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
What do you mean by Recursion Function?
What is a macro?
By using C language input a date into it and if it is right?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Are the outer parentheses in return statements really optional?
What is difference between constant pointer and constant variable?
What are high level languages like C and FORTRAN also known as?
What is #include stdio h and #include conio h?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is function prototype?
explain what is fifo?
Why is %d used in c?
Describe the difference between = and == symbols in c programming?
Why is void main used?
What is the meaning of typedef struct in c?