Answer Posted / vaibhav
divide no. by 2 till 1 is not coming in quotient, then it
write from bottom to top
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What is external variable in c?
What are the types of functions in c?
What is static volatile in c?
What is the use of #include in c?
What is auto keyword in c?
What is sizeof c?
Explain about block scope in c?
Why is structure padding done in c?
Explain what is gets() function?
How main function is called in c?
What is difference between structure and union in c programming?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
How can I trap or ignore keyboard interrupts like control-c?