#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 fread and fwrite function?
Is linux written in c?
Between macros and functions,which is better to use and why?
Can we assign string to char pointer?
What is c method?
explain what are actual arguments?
What is the use of c language in real life?
Explain how can I convert a string to a number?
What is nested structure?
What does the format %10.2 mean when included in a printf statement?
Are negative numbers true in c?
What is string function in c?
What functions are in conio h?
Write a program to print all permutations of a given string.
Explain the binary height balanced tree?