What are the applications of c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c? Is there a standard type?
Explain about the constants which help in debugging?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Name the language in which the compiler of "c" in written?
Are there namespaces in c?
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
change to postfix a/(b+c*d-e)
What is function pointer and where we will use it
What is the difference between array and pointer?
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort