number of times a digit is present in a number
No Answer is Posted For this Question
Be the First to Post Answer
Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4
What is variables in c?
Why c is called a middle level language?
What is the use of a conditional inclusion statement in C?
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
application of static variables in real time
how to go with this?
write a program to add two numbers of any size.....(remember any size)
#define d 10+10 main() { printf("%d",d*d); }
How would you sort a linked list?
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