what is the most appropriate way to write a multi-statement
macro?
What is modifier & how many types of modifiers available in c?
What is c programming structure?
Is it acceptable to declare/define a variable in a c header?
How can I increase the allowable number of simultaneously open files?
what will happen if you free a pointer twice after allocating memory dynamically ?
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
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is return type in c?
What are local variables c?
What is the use of pragma in embedded c?
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
How can I run c program?