What are the two types of structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is the size of a union variable?
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
How important is structure in life?
How. To pass the entrance test
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Who invented bcpl language?
Why preprocessor should come before source code?
what are brk, sbrk?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
difference between ordinary variable and pointer in C?
Explain how can you tell whether two strings are the same?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none