Answer Posted / lakkup
structure:it holds dissimiliar datatypes when compared to
array.
function:it is used when an operation has to be done by
skipping some of the stepsi.e., function call
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
What are preprocessor directives in c?
how do you execute a c program in unix.
What are the different types of control structures?
How does pointer work in c?
What is static and auto variables in c?
Explain what is output redirection?
What is spaghetti programming?
What do you mean by dynamic memory allocation in c?
provide an example of the Group by clause, when would you use this clause
Why we use stdio h in c?
What is the difference between a string and an array?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Where is volatile variable stored?
Define Array of pointers.
Is a pointer a kind of array?