List at least 10 sorting methods indicating their average case
complexity, worst case complexity and best case complexity.
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
how can we print hellow world programme without using semicolon
What is getche() function?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What does calloc stand for?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What is a const pointer, and how does it differ from a pointer to a const?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Explain c preprocessor?