#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 / sunil v r
char *
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does typedef struct mean?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Write a program to check armstrong number in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What are all different types of pointers in c?
What is line in c preprocessor?
Explain the difference between #include "..." And #include <...> In c?
Differentiate between a for loop and a while loop? What are it uses?
What are the properties of union in c?
How many types of errors are there in c language? Explain
How do I use void main?
What is the purpose of the statement: strcat (S2, S1)?
Why do we need a structure?
How do you print only part of a string?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?