#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
a program that can input number of records and can view it again the record
is it possible to create your own header files?
What are linked lists in c?
What is a double c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Are there constructors in c?
Can include files be nested?
Explain what is output redirection?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Why does the call char scanf work?
What should malloc(0) do?
What is void pointers in c?
What's the difference between constant char *p and char * constant p?
What is the value of h?