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 / babu ba
6
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How many parameters should a function have?
What is string in c language?
What are the preprocessor categories?
In which language linux is written?
What is a newline escape sequence?
Why is c so important?
Is there a way to compare two structure variables?
Describe the difference between = and == symbols in c programming?
What are type modifiers in c?
What is static memory allocation?
What is pragma in c?
What is the description for syntax errors?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is structure padding in c?
What is hungarian notation? Is it worthwhile?