Explain what is gets() function?
No Answer is Posted For this Question
Be the First to Post Answer
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
can you change name of main()?how?
What is the difference between array and pointer?
what different between c and c++
is forign key will be unique key any table or not?
What is meant by 'bit masking'?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
main() {int a=200*200/100; printf("%d",a); }
What is a string?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Why is it that not all header files are declared in every C program?