typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a :
a) Union
b) User defined type
c) Enumerated variable
d) none
No Answer is Posted For this Question
Be the First to Post Answer
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
How are pointers declared in c?
What are the various types of control structures in programming?
How will you find a duplicate number in a array without negating the nos ?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What is typedef struct in c?
What is methods in c?
How to print India by nested loop? I IN IND INDI INDIA
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
what is difference between ANSI structure and C99 Structure?
What is a const pointer, and how does it differ from a pointer to a const?