#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
What are the advantages of using Unions?
What is a built-in function in C?
Why is struct padding needed?
What is output redirection?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What are the different types of endless loops?
What do you mean by invalid pointer arithmetic?
in linking some of os executables are linking name some of them
How do we make a global variable accessible across files? Explain the extern keyword?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain modulus operator.
What is double pointer in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Write the control statements in C language
Why is void main used?