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
Which function in C can be used to append a string to another string?
Explain the difference between structs and unions in c?
Explain what are header files and explain what are its uses in c programming?
What is a wrapper function in c?
what is uses of .net
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What do you mean by Recursion Function?
What are the types of unary operators?
If you know then define #pragma?
Can a void pointer point to a function?
what do you mean by inline function in C?
What is enumerated data type in c?
What is the benefit of using an enum rather than a #define constant?
all c language question
What is the difference between malloc calloc and realloc in c?