what will be the output of this program?
void main()
{
int a[]={5,10,15};
int i=0,num;
num=a[++i] + ++i +(++i);
printf("%d",num);
}
Answer Posted / gerda
15
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are the restrictions of a modulus operator?
Explain how many levels deep can include files be nested?
What is the use of putchar function?
Define the scope of static variables.
What are structural members?
how to count no of words,characters,lines in a paragraph.
What is nested structure in c?
What is struct node in c?
What is the purpose of ftell?
Can a variable be both constant and volatile?
Is flag a keyword in c?
What is volatile keyword in c?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How do you print only part of a string?
Distinguish between actual and formal arguments.