#include<stdio.h>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}
Answer Posted / mayank kumar
i=5
j=11
| Is This Answer Correct ? | 22 Yes | 10 No |
Post New Answer View All Answers
Write a program to swap two numbers without using a temporary variable?
Why can’t we compare structures?
How can I find out if there are characters available for reading?
What are the 4 types of functions?
Hai what is the different types of versions and their differences
How do you define CONSTANT in C?
What is the significance of an algorithm to C programming?
Explain what is the difference between the expression '++a' and 'a++'?
What are the types of type qualifiers in c?
What is FIFO?
Write a factorial program using C.
what are the 10 different models of writing an addition program in C language?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Is anything faster than c?
Explain the meaning of keyword 'extern' in a function declaration.