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
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What are identifiers in c?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is a keyword?
What are the different types of pointers used in c language?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
Using which language Test cases are added in .ptu file of RTRT unit testing???
Explain the properties of union.
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
What is malloc and calloc?
What is #line used 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