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 are the primitive data types in c?
Explain what is the benefit of using an enum rather than a #define constant?
How can I make it pause before closing the program output window?
What is sizeof int?
List some applications of c programming language?
Describe wild pointers in c?
Explain what does the function toupper() do?
What are reserved words with a programming language?
How can I write a function that takes a format string and a variable number of arguments?
What are the types of c language?
If null and 0 are equivalent as null pointer constants, which should I use?
Why is sizeof () an operator and not a function?
What is pre-emptive data structure and explain it with example?
In which language linux is written?
Describe the difference between = and == symbols in c programming?