How many types of sorting are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is pointer & why it is used?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What's the best way to declare and define global variables?
Is c easy to learn?
What is d scanf?
How can I read in an object file and jump to locations in it?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
How can I read/write structures from/to data files?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Explain c preprocessor?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
When should you not use a type cast?