Write the syntax and purpose of a switch statement in C.
No Answer is Posted For this Question
Be the First to Post Answer
what is op? for(c=0;c=1000;c++) printf("%c",c);
what is the difference between <stdio.h> and "stdio.h"
14 Answers Invendis, Kanbay, Mastek, MathWorks,
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
What is memcpy() function?
Why is struct padding needed?
What are register variables? What are the advantage of using register variables?
Where local variables are stored in c?
Is it better to use a macro or a function?
Explain what is gets() function?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Differentiate between the = symbol and == symbol?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..