what is difference between array and structure?
Answer Posted / hfghfgh
Array is Spelled Array
While Structure is spelled Structure.
| Is This Answer Correct ? | 19 Yes | 75 No |
Post New Answer View All Answers
Is c is a procedural language?
Explain how do you generate random numbers in c?
What is the process to create increment and decrement stamen in c?
What is the difference between the local variable and global variable in c?
What's the difference between constant char *p and char * constant p?
Sir i need notes for structure,functions,pointers in c language can you help me please
When can a far pointer be used?
How can I list all of the predefined identifiers?
What does 4d mean in c?
What is define directive?
Write a Program to accept different goods with the number, price and date of purchase and display them
What are c preprocessors?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain what is the difference between far and near ?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }