main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / divyansh
output will be 1o 16
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is a volatile keyword in c?
What is the use of function overloading in C?
What is C language ?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Explain what is a stream?
What is difference between scanf and gets?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are the keywords 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(); }
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are the types of data types and explain?
write a program to concatenation the string using switch case?
how to capitalise first letter of each word in a given string?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none