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 / ravi
no change in value of a.
i.e,a = 2 only .
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain the process of converting a Tree into a Binary Tree.
Explain a file operation in C with an example.
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is an array in c?
How do you use a pointer to a function?
What happens if a header file is included twice?
What is difference between union All statement and Union?
what is the height of tree if leaf node is at level 3. please explain
How can you increase the allowable number of simultaneously open files?
Why void is used in c?
What is class and object in c?
What is the advantage of a random access file?
How many levels of pointers can you have?
What is the description for syntax errors?
What is the benefit of using #define to declare a constant?