#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 / guest
char *
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain how do you use a pointer to a function?
what is uses of .net
What is stack in c?
Do you know the difference between exit() and _exit() function in c?
What are the two forms of #include directive?
Explain the bubble sort algorithm.
Write a program to implement queue.
What are pointers? What are different types of pointers?
What is the difference between exit() and _exit() function in c?
What is int main () in c?
Did c have any year 2000 problems?
Why void is used in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
How many levels of indirection in pointers can you have in a single declaration?
What is difference between main and void main?