Answer Posted / manipal singh
Array is a collection of similar data types which stored in
contiguous memory locations
| Is This Answer Correct ? | 65 Yes | 9 No |
Post New Answer View All Answers
What are the three constants used in c?
What is 2 d array in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What are the types of pointers in c?
What is scope and lifetime of a variable in c?
What is variable and explain rules to declare variable in c?
Explain the Difference between the New and Malloc keyword.
Explain what is the difference between a free-standing and a hosted environment?
Do character constants represent numerical values?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What are the main characteristics of c language describe the structure of ac program?
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 the correct code to have following output in c using nested for loop?
What is meant by operator precedence?
What is the best style for code layout in c?