What are the 4 types of programming language?
What is indirection in c?
What is a union?
Is c call by value?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
how to display 2-D array elements in spiral
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
What is a macro?
what is difference between ANSI structure and C99 Structure?
Dear Sir, we are required the bubble sorting programs Regs Prem
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
Please list all the unary and binary operators in C.