Explain pointer. What are function pointers in C?
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?
What is a class?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Is null always equal to 0(zero)?
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
difference between semaphores and mutex?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is the difference between null pointer and wild pointer?
What is strcmp in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above