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 is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
How do you convert strings to numbers in C?
What is the best organizational structure?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is switch in c?
shorting algorithmS
How many main () function we can have in a project?
Explain heap and queue.
Write a program to print factorial of given number without using recursion?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is the difference between fread and fwrite function?
What is the method to save data in stack data structure type?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?