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 output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
How many loops are there in c?
Explain the difference between fopen() and freopen().
What are header files in c?
which types of data structure will i use to convert infix to post fix???
Does sprintf put null character?
How can I delete a file?
WHAT IS HIGH LEVEL LANGUAGE?
What's the best way of making my program efficient?
What is an object?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟