main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
what is the output?
Answer Posted / vignesh1988i
x=57
y=95
| Is This Answer Correct ? | 9 Yes | 14 No |
Post New Answer View All Answers
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is printf () in c?
What are operators in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is build process in c?
What is main return c?
What are the different types of control structures in programming?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Write a program that accept anumber in words
What are pragmas and what are they good for?
What are nested functions in c?
Why doesnt the call scanf work?
Write a program to know whether the input number is an armstrong number.
Explain the difference between getch() and getche() in c?
In C programming, what command or code can be used to determine if a number of odd or even?