Why c is called procedure oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
5. 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
What are integer variable, floating-point variable and character variable?
can we write a program in c for printf and scanf without using header file stdio.h
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What does return 1 means in c?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What Is The Difference Between Null And Void Pointer?
What kind of structure is a house?
What does c mean in standard form?
formula to convert 2500mmh2o into m3/hr
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,