main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / nirmala
11,15
| Is This Answer Correct ? | 3 Yes | 19 No |
Post New Answer View All Answers
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Can math operations be performed on a void pointer?
What are the 4 types of unions?
What is a macro, and explain how do you use it?
What is advantage of pointer in c?
What is wrong with this initialization?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
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(); }
What is restrict keyword in c?
What is context in c?
What is meant by operator precedence?
what do you mean by inline function in C?
How can I read data from data files with particular formats?
What type of function is main ()?