what is difference between array and structure?
Answer Posted / kunal
array is scope of variable
structure is a scope of data type
| Is This Answer Correct ? | 12 Yes | 6 No |
Post New Answer View All Answers
What does sizeof return c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is the use of pointers in C?
Who is the main contributor in designing the c language after dennis ritchie?
Explain how do you search data in a data file using random access method?
Differentiate between new and malloc(), delete and free() ?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What are the disadvantages of a shell structure?
What is n in c?
What is calloc malloc realloc in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
What is the use of sizeof () in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Write a program to print fibonacci series using recursion?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.