What are header files in c?
What are the uses of null pointers?
what is const volatile?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
what are the files which are automatically opened when a c file is executed?
what is the difference between c and c++?
Program to display given 3 integers in ascending order
What is the g value paradox?
what is the use of using linked list and array?
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
int x=sizeof(!5.856); What will value of variable x?
What are the advantages of using new operator as compared to the function malloc ()?