void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / jignesh patel
i++=5
++i=6
so i++ + ++i = 5+6=11
| Is This Answer Correct ? | 6 Yes | 26 No |
Post New Answer View All Answers
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
When should we use pointers in a c program?
in linking some of os executables are linking name some of them
Is c still used?
Can I initialize unions?
Why do we use & in c?
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
What is call by value in c?
Explain how can I read and write comma-delimited text?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is integer constants?
Why c language?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What are compound statements?