#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 / ashish
ch1 and ch2 are the char * and ch2 and ch4 are char type
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does c have class?
What are the three constants used in c?
Here is a neat trick for checking whether two strings are equal
What is malloc and calloc?
largest Of three Number using without if condition?
How many types of operator or there in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is difference between union and structure in c?
please give me some tips for the placement in the TCS.
Explain what is a static function?
what is the diffrenet bettwen HTTP and internet protocol
Write a program to print numbers from 1 to 100 without using loop in c?
When should the volatile modifier be used?
Write a program to print “hello world” without using semicolon?
How to create struct variables?