Is there a way to switch on strings?
No Answer is Posted For this Question
Be the First to Post Answer
what are the interview question's in the language c
Explain About fork()?
What is the meaning of 2d in c?
List a few unconditional control statement in c.
Explain how do you convert strings to numbers in c?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Write a c program to demonstrate Type casting in c?
What is malloc and calloc?
When is a “switch” statement preferable over an “if” statement?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
Write a program for Overriding.
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.