Find MAXIMUM of three distinct integers using a single C statement
No Answer is Posted For this Question
Be the First to Post Answer
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
write a program to swap two numbers without using temporary variable?
What is the purpose of sprintf() function?
Ow can I insert or delete a line (or record) in the middle of a file?
which one is better structure or union?(other than the space occupied )
what is mallloc()?how it works?
How can I do serial ("comm") port I/O?
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
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
Why does the call char scanf work?
What is the meaning of typedef struct in c?
Write a programe print the sum of series 0,1,2,.....10