Answer Posted / paramesh
a string is collection of characters but an array is
collection of similar data types
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How do I send escape sequences to control a terminal or other device?
how we can make 3d venturing graphics on outer interface
Discuss the function of conditional operator, size of operator and comma operator with examples.
What are the types of macro formats?
what is the height of tree if leaf node is at level 3. please explain
What are the different categories of functions in c?
Is c easy to learn?
Is c++ based on c?
Why is structure important for a child?
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(); }
How does normalization of huge pointer works?
What is the correct code to have following output in c using nested for loop?
Explain what is the concatenation operator?
What is I ++ in c programming?