Program to display given 3 integers in ascending order
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
Explain can static variables be declared in a header file?
What is the difference between calloc() and realloc()?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
What is operator promotion?
What is the restrict keyword in C?
How many data structures are there in c?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
what is memory leak?
How is a null pointer different from a dangling pointer?
What is c standard library?
Multiply an Integer Number by 2 Without Using Multiplication Operator