What is the use of getchar functions?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Explain can you assign a different address to an array tag?
What is the difference between far and near in c?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
Where define directive used?
What does static variable mean in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is void main () in c?
What is 'bus error'?
What language is windows 1.0 written?
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