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 / ramlal bishnoi
b)1 3 1 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is 'bus error'?
What is meant by type specifiers?
Why does everyone say not to use gets?
What is the difference between union and anonymous union?
Explain the use of bit fieild.
What is difference between structure and union in c?
What is a pointer and how it is initialized?
What is difference between array and pointer in c?
How do you define a string?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
How pointers are declared?
What is difference between array and structure in c?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What are the storage classes in C?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above