Answer Posted / vandana
semicolon(;)
| Is This Answer Correct ? | 50 Yes | 5 No |
Post New Answer View All Answers
What does the error message "DGROUP exceeds 64K" mean?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is dynamic memory allocation?
What are c identifiers?
Why c is a mother language?
Why structure is used in c?
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(); }
regarding pointers concept
What is context in c?
What does static variable mean in c?
Can you explain the four storage classes in C?
What is dangling pointer in c?
What are the types of data structures in c?
What is a string?
Can we use visual studio for c?