what is difference between array and structure?
Answer Posted / sushil
structure: structure is a collection of variable, reference
under convinent mean of keeping related information.
| Is This Answer Correct ? | 7 Yes | 17 No |
Post New Answer View All Answers
What is quick sort in c?
What are the types of unary operators?
How can I do peek and poke in c?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Is sizeof a keyword in c?
Explain #pragma statements.
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
How can a program be made to print the name of a source file where an error occurs?
Where we use clrscr in c?
What is a macro in c preprocessor?
What is c mainly used for?
What is the difference between class and object in c?
What is the scope of static variable in c?
Why structure is used in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.