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
Explain what is meant by high-order and low-order bytes?
string reverse using recursion
Explain why C language is procedural?
What are preprocessor directives in c?
Is null valid for pointers to functions?
Explain the difference between structs and unions in c?
What is uint8 in c?
Here is a neat trick for checking whether two strings are equal
What is C language ?
Difference between Function to pointer and pointer to function
Describe static function with its usage?
How do you determine the length of a string value that was stored in a variable?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain how do you list a file’s date and time?
What is sizeof int in c?