6)What would be the output?
main()
{
int u=1,v=3;
pf("%d%d",u,v);
funct1(&u,&v);
pf("%d%d\n",u,v);
}
void funct1(int *pu, int *pv)
{
*pu=0;
*pv=0;
return;
}
a)1 3 1 3
b)1 3 1 1
c)1 3 0 0
d)1 1 1 1
e) 3 1 3 1
Answer Posted / niranjan kumar niraj
a)1313
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How do you define a string?
When can a far pointer be used?
What is adt in c programming?
What are run-time errors?
Do you know the purpose of 'register' keyword?
What does a function declared as pascal do differently?
Define and explain about ! Operator?
Explain how can I convert a string to a number?
What are the general description for loop statement and available loop types in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is bubble sort in c?
What is && in c programming?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Explain the use of bit fieild.