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
Tell us two differences between new () and malloc ()?
1 232 34543 4567654 can anyone tell me how to slove this c question
Why doesnt long int work?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What are reserved words?
what is mean by Garbage collection ? Please answer me. Advance thanks.
why return type of main is not necessary in linux
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
write a program which will count occurance of a day between two dates.
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?