What are the types of arrays in c?
Can you mix old-style and new-style function syntax?
What is the use of a static variable in c?
What are pointers? What are different types of pointers?
Are negative numbers true in c?
Why does everyone say not to use scanf? What should I use instead?
When should a type cast be used?
while initialization of array why we use a[][2] why not a[2][]...?
How can I run c program?
The file stdio.h, what does it contain?
What is the difference between abs() and fabs() functions?
What is the best way to store flag values in a program?
What are the 4 types of organizational structures?
Differentiate between null and void pointers.
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.