#define DCHAR char*
typedef char* TCHAR;
if using these following variables will be declared like
DCHAR ch1, ch2;
TCHAR ch3, ch4;
then what will be types of ch1, ch2, ch3 and ch4?
Answer Posted / shiva
ch1,ch3 and ch4 are char* types whiel ch2 is char type.
Please let me know if I am wrong.
| Is This Answer Correct ? | 22 Yes | 5 No |
Post New Answer View All Answers
What is the difference between far and near ?
How can I open files mentioned on the command line, and parse option flags?
What is assignment operator?
What are identifiers and keywords in c?
Can a variable be both const and volatile?
What is line in c preprocessor?
Define the scope of static variables.
What does main () mean in c?
What is local and global variable in c?
What are the loops in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
List the different types of c tokens?
Can you please explain the difference between syntax vs logical error?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What does s c mean in text?