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
Answers were Sorted based on User's Feedback
How are portions of a program disabled in demo versions?
Explain argument and its types.
write a program in c to read array check element is present or not?
how to introdu5ce my self in serco
what is available in C language but not in C++?
10 Answers CTS, TCS,
How do you write a program which produces its own source code as its output?
How can you call a function, given its name as a string?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
without a terminator how can we print a message in a printf () function.
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
how to write a program which adds two numbers without using semicolon in c