Answer Posted / dhaval patel
An Array is a collection of variables of the same type that
are refered to through a common name.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is operator promotion?
What is selection sort in c?
How do I get a null pointer in my programs?
Explain why C language is procedural?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
find the sum of two matrices and WAP for it.
Write a program with dynamically allocation of variable.
The statement, int(*x[]) () what does in indicate?
What is the c language function prototype?
What is the size of array float a(10)?
What does %p mean c?
What is an expression?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only