what is difference between array and structure?
Answer Posted / rajesh
array -same data type
structure -diff datatype
| Is This Answer Correct ? | 630 Yes | 51 No |
Post New Answer View All Answers
How do we make a global variable accessible across files? Explain the extern keyword?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain how do you override a defined macro?
What is function prototype in c with example?
How many levels of pointers can you have?
What is the difference between exit() and _exit() function in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Why can arithmetic operations not be performed on void pointers?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
How can I avoid the abort, retry, fail messages?
int far *near * p; means
Are pointers integers in c?
What are header files why are they important?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why do we use namespace feature?