Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


define switch statement?

Answers were Sorted based on User's Feedback



define switch statement?..

Answer / abirami

it is used to check the various type of cases in one program.

Is This Answer Correct ?    20 Yes 1 No

define switch statement?..

Answer / krishna

Switch statement is a selection statement which is used in a situation where there exists various cases and one needs to jump over to the required statement without executing the precedence statements

Is This Answer Correct ?    9 Yes 0 No

define switch statement?..

Answer / d.jeswanth

switch statement can be defined as " it can choose a
related option from the multiple options ".it belongs to
control and conditonal statements.


*************thank you************

Is This Answer Correct ?    5 Yes 0 No

define switch statement?..

Answer / vijay

Its used to select the part of program to the execution

Is This Answer Correct ?    4 Yes 3 No

define switch statement?..

Answer / amit

A switch statement is a selection statement that lets you
transfer control to different statements within the switch
body depending on the value of the switch expression. The
switch expression must evaluate to an integral or enumeration
value.

Is This Answer Correct ?    1 Yes 0 No

define switch statement?..

Answer / amit

A switch statement is a selection statement that lets you
transfer control to different statements within the switch
body depending on the value of the switch expression. The
switch expression must evaluate to an integral or enumeration
value.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


Explain data types & how many data types supported by c?

0 Answers  


How can I find out if there are characters available for reading?

0 Answers  


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

0 Answers  


Can i use “int” data type to store the value 32768? Why?

0 Answers  


how can we use static and extern?and where can we use this?

3 Answers   Excel,


main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


Tell me can the size of an array be declared at runtime?

0 Answers  


What is || operator and how does it function in a program?

0 Answers  


main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


How can I convert a number to a string?

0 Answers  


Describe the modifier in c?

0 Answers  


Categories