explain what is fifo?
No Answer is Posted For this Question
Be the First to Post Answer
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What does a function declared as pascal do differently?
What does c value mean?
What is the use of the sizeof operator?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
what is the maximum limit of row and column of a matrix in c programming. in linux .
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
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?
Explain the difference between call by value and call by reference in c language?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
What is the difference between near, far and huge pointers?
What is an volatile variable?