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
Is struct oop?
How can you allocate arrays or structures bigger than 64K?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
When should a far pointer be used?
What is the use of bitwise operator?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
application attempts to perform an operation?
What is queue in c?
What is the difference between printf and scanf )?
What does %c mean in c?
Write a program for Overriding.
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Do pointers need to be initialized?
Is flag a keyword in c?
can we change the default calling convention in c if yes than how.........?