main()
{
int i = 1;
int num[] = {1,2,3,4};
num[i] = i++;
printf("%d", num[i]);
}
what will be the output?
}
Answer Posted / vinay
Idiots please don't give wrong answers. While you answer
the questions, please check the output practically and post
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is double pointer in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What are loops c?
What is the difference between ++a and a++?
Write the control statements in C language
Explain the meaning of keyword 'extern' in a function declaration.
Explain main function in c?
How can variables be characterized?
What does the file stdio.h contain?
How many types of operator or there in c?
What is a protocol in c?
Why do we write return 0 in c?
Why string is used in c?
How main function is called in c?
Why are all header files not declared in every c program?