Answer Posted / basri zuber a
array is collection of similer datatype.structure is
collection of diffrent diffrent data type.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is difference between structure and union in c programming?
What is difference between array and structure in c?
Why ca not I do something like this?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is #define size in c?
What are # preprocessor operator in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is wrong with this initialization?
What is define directive?
Is c a great language, or what?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is the difference between single charater constant and string constant?
How can I make sure that my program is the only one accessing a file?
Can you return null in c?
Why can't I perform arithmetic on a void* pointer?