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
Write a program to swap two numbers without using third variable?
How are strings stored in c?
Do string constants represent numerical values?
What is a substring in c?
Can we assign integer value to char in c?
What are the advantages of using macro in c language?
How to define structures? ·
What is derived datatype in c?
Tell me can the size of an array be declared at runtime?
Explain can static variables be declared in a header file?
Can we initialize extern variable in c?
What is hungarian notation? Is it worthwhile?
What are the advantages of the functions?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
write a program to display all prime numbers