What is the difference between if else and switchstatement
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the absolute value of given integer using Conditional Operators
What is string in c language?
Why n++ execute faster than n+1 ?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
2. What does static variable mean?
What is c value paradox explain?
What is Function Pointer? Explain with example?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
What is #include stdio h and #include conio h?
What is function prototype in c language?
What does sizeof function do?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer