i agree it would be easier to use CString.
And as for the " = {0}" compiles and runs for me.
VS 2010 express
char* someCharArray = {0};
printf("someCharArray(%s)\n", someCharArray);
with output of:
"someCharArray = ((NULL))"
i changed "thename" to a char array and it worked for me:
// Test.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <stdio.h>
//struct definition
struct sample
{
char *name;
char *addr;
char *city;
char *state;
char *zip;
char *phone...
print out "thename" as soon as you do your scanf. move the struct above the definition of "int main." Include the default constructor with the initializer list.
in main:
sample Asample; //instance of defaulted struct
...
printf("Enter Name");
scanf("%s",thename);
//verify "thename"...
after these lines:
printf("Enter Name");
scanf("%s",thename);
add
printf("thename = %s\n", thename);
see if you can see what the actual value is prior to doing anything with the structure.
also, you may want to create a constructor for the struct which defaults the members:
struct sample{
char *name;
char *addr;
char *city;
char *state;
char *zip;
char *phone;
//constructor with initializer list(everything to 0)...
char thename will only accept a single char, you would need to make it a char array or a char*.
http://www.cplusplus.com/reference/clibrary/cstdio/scanf/
char* newphrase = {0}; //zero out the memory
then after that, it would depend on what youre actually trying to do with the function. the original post says translate the phrase. translate how? what are the desired results? obviously to create and return a new string, but with what...
a quick google search("ado.net c++") returned this:
http://www.codeproject.com/KB/mcpp/adodemo.aspx
http://www.codeproject.com/KB/database/adonet_mcpp.aspx
well as your code reads: You populate newPhrase with nothing but ' ' (spaces). then you return the newly build "newPhrase" which is some length of nothing but spaces.
sk2 holds all of the characters that arent spaces(built but not used). what is the desired result of this function?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.