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 the value of a[3] if integer a[] = {5,4,3,2,1}?
write a program fibonacci series and palindrome program in c
Why void is used in c?
Why n++ execute faster than n+1 ?
Explain how does flowchart help in writing a program?
Which node is more powerful and can handle local information processing or graphics processing?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are categories used for in c?
Why is not a pointer null after calling free?
Explain what is the most efficient way to store flag values?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
In c programming language, how many parameters can be passed to a function ?
What does 3 periods mean in texting?
What is a structure member in c?
What are the 4 types of programming language?