where do we use structure pointer?
Answer / naveen shukla
we uses structure pointer when we have to point to the whole
object and we can access all the values of the data in the
object.
when we want to keep the reference of the structure variable
| Is This Answer Correct ? | 2 Yes | 0 No |
what is the hexidecimal number of 4100?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What does volatile do?
Do you know null pointer?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
YBJBU6
Is null valid for pointers to functions?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
What are two dimensional arrays alternatively called as?
What is structure in c language?
what is difference between strcmp & palindrome?