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.
No Answer is Posted For this Question
Be the First to Post Answer
What are the parts of c program?
wap in c to accept n number display the highest and lowest value
print out of string in this format; 1. "rajesh" 2. \n 3. %d
What is 02d in c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
what is output of the following statetment?Printf(“%x”, -1<<4); ?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
why u join this call center?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
explain what are actual arguments?
CopyBits(x,p,n,y) copy n LSBs from y to x starting LSB at 'p'th position.