What are the two types of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is #define size in c?
Write a program to exchange two variaables without temp
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 directives in c?
Read two numbers from keyboard and find maximum of them?
What is the difference between printf and scanf )?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
What are pointers? What are different types of pointers?
Explain two-dimensional array.
Do you know the use of 'auto' keyword?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }