#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 / movemaker

^^All 4 will be char* types, why the hell would ch2 be char type like said above by Shiva . :P .

Is This Answer Correct ?    1 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is c value paradox explain?

542


Which programming language is best for getting job 2020?

584


What is the data segment that is followed by c?

586


What is difference between structure and union with example?

565


What is hash table in c?

544






Write a program to check palindrome number in c programming?

572


What is the process to create increment and decrement stamen in c?

560


How do you define structure?

536


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

3034


Should I learn data structures in c or python?

558


can any one tel me wt is the question pattern for NIC exam

1535


What is spaghetti programming?

643


Explain can the sizeof operator be used to tell the size of an array passed to a function?

566


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

668


Explain how can I prevent another program from modifying part of a file that I am modifying?

615