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


Please Help Members By Posting Answers For Below Questions

What is the difference between %d and %i?

592


How is = symbol different from == symbol in c programming?

607


What are the different file extensions involved when programming in C?

752


What is dynamic memory allocation?

804


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

1583






What is a substring in c?

583


A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

622


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

2021


How do you write a program which produces its own source code as output?

603


If errno contains a nonzero number, is there an error?

798


Explain modulus operator.

590


HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????

2263


What is a buffer in c?

568


Can the sizeof operator be used to tell the size of an array passed to a function?

612


Explain union.

633