Answer Posted / shruti
Array is a collection of homogeneous data-types..
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Which of these functions is safer to use : fgets(), gets()? Why?
What is a program flowchart?
Explain the difference between ++u and u++?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Is printf a keyword?
code for quick sort?
Does c have function or method?
Is using exit() the same as using return?
Do you know null pointer?
Can I initialize unions?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is extern c used for?
What is typedef example?
Is there any data type in c with variable size?
What does != Mean in c?