What is nested structure?
No Answer is Posted For this Question
Be the First to Post Answer
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
How can I convert integers to binary or hexadecimal?
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
Which of these functions is safer to use : fgets(), gets()? Why?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
char p="data"; printf(p);
Is it better to use malloc() or calloc()?
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
What is array of structure in c programming?
what is difference between array of characters and string
What is const keyword in c?