Which is more efficient, a switch statement or an if else chain?
No Answer is Posted For this Question
Be the First to Post Answer
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
why the execution starts from main function
explain how do you use macro?
What is extern variable in c with example?
What is the difference between break and continue?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
Differentiate b/w Modify and Update commands giving example.
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Why do we use pointer to pointer in c?
What is the meaning of && in c?