#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
Where are some collections of useful code fragments and examples?
What are the disadvantages of a shell structure?
Why we use conio h in c?
Disadvantages of C language.
Explain what is the most efficient way to store flag values?
What are the uses of a pointer?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is difference between Structure and Unions?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is a ternary operator in c?
How do you use a 'Local Block'?
Why can’t constant values be used to define an array’s initial size?
What is malloc and calloc?
What are loops c?
Differentiate between new and malloc(), delete and free() ?