main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Post New Answer View All Answers
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Is a pointer a kind of array?
what is uses of .net
What is the usage of the pointer in c?
Explain why can’t constant values be used to define an array’s initial size?
What is sizeof return in c?
What is the difference between arrays and pointers?
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 many levels of indirection in pointers can you have in a single declaration?
How do you do dynamic memory allocation in C applications?
What are the basic data types associated with c?
Who developed c language?
Tell me about low level programming languages.
What is the argument of a function in c?