#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
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is bubble sort in c?
What is floating point constants?
What is the difference between int main and void main?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is the use of clrscr?
What does the function toupper() do?
Why is python slower than c?
What is difference between class and structure?
Why is it usually a bad idea to use gets()? Suggest a workaround.
How do you sort filenames in a directory?
What is the correct code to have following output in c using nested for loop?
Why static is used in c?
What is LINKED LIST? How can you access the last element in a linked list?
What is %s and %d in c?