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 / girish
15
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why is c platform dependent?
What are near, far and huge pointers?
What is context in c?
What is difference between arrays and pointers?
What is clrscr in c?
What are the different types of endless loops?
What is the meaning of c in c language?
What does a pointer variable always consist of?
What is a void * in c?
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.
Explain do array subscripts always start with zero?
Where register variables are stored in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
How reliable are floating-point comparisons?
What is the difference between array_name and &array_name?