main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / priya
i want answer for this
| Is This Answer Correct ? | 17 Yes | 3 No |
Post New Answer View All Answers
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is ponter?
What is meant by keywords in c?
What is f'n in math?
What is difference between function overloading and operator overloading?
What are integer variable, floating-point variable and character variable?
Process by which one bit pattern in to another by bit wise operation is?
What are keywords in c with examples?
What is the data segment that is followed by c?
Can the curly brackets { } be used to enclose a single line of code?
Is there a way to jump out of a function or functions?
When should the register modifier be used? Does it really help?
What do you understand by friend-functions? How are they used?
What is a buffer in c?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.