#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
Why do we use main function?
Explain how can I write functions that take a variable number of arguments?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Ow can I insert or delete a line (or record) in the middle of a file?
When should the volatile modifier be used?
What is external variable in c?
What is a far pointer in c?
How to create struct variables?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Why we use break in c?
How will you find a duplicate number in a array without negating the nos ?
What are the main characteristics of c language describe the structure of ac program?
Can we change the value of #define in c?
Is c weakly typed?
What are identifiers in c?