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 / e-mail
a=2
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is the difference between malloc() and calloc()?
Explain argument and its types.
How can I implement a delay, or time a users response, with sub-second resolution?
What are the advantages and disadvantages of pointers?
What are the types of c language?
How is a null pointer different from a dangling pointer?
Is there any demerits of using pointer?
What are conditional operators in C?
How do I determine whether a character is numeric, alphabetic, and so on?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Which is an example of a structural homology?
how to capitalise first letter of each word in a given string?
What is unary operator?
Can you write a programmer for FACTORIAL using recursion?
What is static identifier?