Reverse the string
1) Use only one character variable
2) Don't Use array
3) Only one variable is allowed
Pl.. any one help ...
1) Use only one character variable
2) Don't Use array
3) Only one variable is allowed
Pl.. any one help ...
typedef struct _string { char _0; char _1; char _2; char _3: . . . //Is there a size limit? char _20; }Tstring;
char str[] = "just a string";
Code removed per Posting Guidelines
n=strlen(str);
Code removed
Comment