#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
Where in memory are my variables stored?
What is the mean of function?
What is wild pointer in c?
What is the difference between c and python?
Describe static function with its usage?
What is the scope of an external variable in c?
How do we declare variables in c?
all c language question
Explain what is a program flowchart and explain how does it help in writing a program?
Function calling procedures? and their differences? Why should one go for Call by Reference?
Is there anything like an ifdef for typedefs?
What is void c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is infinite loop?
What is difference between && and & in c?