Why can't we initialise member variable of a strucutre
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Meaning of () in c
Is printf a keyword?
What is an array in c?
What is difference between union and structure in c?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
Explain the difference between ++u and u++?
How can I generate floating-point random numbers?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is uint8 in c?
hat is a pointer?
Why shouldn’t I start variable names with underscores?