Answer Posted / rams
Pointer is a variable that can store the address of another variable to which it's pointing
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain what is operator promotion?
List a few unconditional control statement in c.
Explain what is wrong with this program statement? Void = 10;
What are the advantages of using new operator as compared to the function malloc ()?
What is the main difference between calloc () and malloc ()?
Why isn't it being handled properly?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is memory leak in c?
What is wild pointer in c?
Why does everyone say not to use gets?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is const keyword in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Tell us the use of fflush() function in c language?