Answer Posted / ashu_deepu
structure can hold different types of data as well as
functions.each member are referenced by .(dot) operator.
but array hold similar type of data type.we just use index
to accesss each element of the array.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the disadvantages of external storage class?
What is the use of a conditional inclusion statement in C?
What are the disadvantages of c language?
What is the general form of function in c?
What is a function in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is ambagious result in C? explain with an example.
What are the different types of pointers used in c language?
What is the scope of global variable in c?
Explain the difference between #include "..." And #include <...> In c?
Does c have function or method?
Why header files are used?
please explain every phase in the "SDLC" in the dotnet.
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Explain what does the format %10.2 mean when included in a printf statement?