Can you pass an entire structure to functions?
Answer / Yogendra Singh
Yes, in C, you can pass an entire structure to a function as a parameter. You can do this by passing the structure variable name as an argument.
| Is This Answer Correct ? | 0 Yes | 0 No |
plz answer.. a program that takes a string e.g. "345" and returns integer 345
is it possible to create your own header files?
Prove or disprove P!=NP.
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);
What are the three constants used in c?
define switch statement?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
Why cant I open a file by its explicit path?
Is c pass by value or reference?
How do I declare a pointer to an array?
What is header file in c?
HOW TO SWAP TWO NOS IN ONE STEP?