void main()
{
int i=5;
printf("%d",i+++++i);
}
Answer Posted / surenda pal singh chouhan
Compiler Error
Explanation:
The expression i+++++i is parsed as i ++ ++ + i which is an
illegal combination of operators.
| Is This Answer Correct ? | 17 Yes | 9 No |
Post New Answer View All Answers
Write a program of prime number using recursion.
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
What are lookup tables in c?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is register variable in c language?
Why c is a procedural language?
What is const and volatile in c?
How to set file pointer to beginning c?
How main function is called in c?
How can I pad a string to a known length?
How does free() know explain how much memory to release?
When is a void pointer used?
Why is #define used?
Explain what does a function declared as pascal do differently?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings