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
What is the purpose of sprintf() function?
what is the full form of c language
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
Explain how can type-insensitive macros be created?
What are the types of bitwise operator?
what's the return value of malloc()
What is struct node in c?
What is the purpose of 'register' keyword?
What are the three constants used in c?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
code for reverse alternate words from astring
What was noalias and what ever happened to it?