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 is c method?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is conio h in c?
Can we use any name in place of argv and argc as command line arguments?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What do you know about the use of bit field?
What is .obj file in c?
Why main is not a keyword in c?
What are the advantages and disadvantages of c language?
What does == mean in texting?
What are the differences between Structures and Arrays?
How can I open files mentioned on the command line, and parse option flags?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is methods in c?
Can you pass an entire structure to functions?