f(x,y,z)
{
y = y+1;
z = z+x;
}
main()
{
int a,b;
a = 2
b = 2;
f(a+b,a,a);
print a;
}
what is the value of 'a' printed
Answer Posted / rahul
6
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What does %2f mean in c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
int i=10; printf("%d %d %d", i, i=20, i);
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is the role of && operator in a program code?
What is the size of structure in c?
What does int main () mean?
Differentiate between functions getch() and getche().
Explain how can a program be made to print the line number where an error occurs?
What is spark map function?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the code for 3 questions and answer check in VisualBasic.Net?
List the difference between a "copy constructor" and a "assignment operator"?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory