main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / rajjak khan
131113
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How can you access memory located at a certain address?
What is optimization in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
what are # pragma staments?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is hashing in c language?
int far *near * p; means
Why is sizeof () an operator and not a function?
What are enums in c?
State two uses of pointers in C?
What are data structures in c and how to use them?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Write the control statements in C language
How many loops are there in c?
What is the difference between scanf and fscanf?