hat is a pointer?
Answers were Sorted based on User's Feedback
Answer / satya.tivari
a pointer is a variable which stores an address of another
variable.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / sumit mmmec
pointer provide the programmer direct access on memory
allocation.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / vaibhav
it is a derived data type which holds the address of that
variable.
| Is This Answer Correct ? | 3 Yes | 0 No |
Why does not c have an exponentiation operator?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What does printf does?
Explain how can I avoid the abort, retry, fail messages?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Disadvantages of C language.
write a program to generate 1st n fibonacci prime number
What do you mean by team??
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Why do we use main function?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????