What Is The Difference Between Null And Void Pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of putchar function?
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?
How many main () function we can have in a project?
How can you pass an array to a function by value?
What is the Difference between Class and Struct?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
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?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What is the sizeof () a pointer?
what is difference between ANSI structure and C99 Structure?
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.