Why & is used in scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a #include preprocessor?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
what will be the output for the following main() { printf("hi" "hello"); }
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
Are there constructors in c?
find largest element in array w/o using sorting techniques.
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Is main is a keyword in c?
What is the use of a ‘