int i=3; this declaration tells the C compiler to
a) reserve space in memory to hold the integer value
b) associate the name i with this memory location
c) store the value 3 at this location
d) all the above
No Answer is Posted For this Question
Be the First to Post Answer
In a switch statement, explain what will happen if a break statement is omitted?
int i=10; printf("%d %d %d", i, i=20, i);
What are disadvantages of C language.
what do you mean by inline function in C?
What are the advantages of using macro in c language?
Explain the difference between malloc() and calloc() function?
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
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
Can the “if” function be used in comparing strings?
What is a Deque?
code for concatination of 2 strings with out using library functions?