Is there sort function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
HOW TO SWAP TWO NOS IN ONE STEP?
What is #include stdio h?
how can be easily placed in TCS.
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
What is signed and unsigned?
Explain how does free() know explain how much memory to release?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error