answersLogoWhite

0

What is case select in c language?

User Avatar

Anonymous

13y ago
Updated: 8/19/2019

It is switch-case. Example:

switch (opsign) {

case '+':

. result = a + b;

. break;

case '-':

. result = a - b;

. break;

...

default:

. printf ("opsign=%c unknown\n", opsign);

}

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is difference between select Case statement and nested loop in c programming in UNIX?

UNIX has no bearing on the C language; it is cross-platform. There is no select/case in C, you probably meant switch/case. However, a switch/case is a conditional jump while a nested loop is a loop within a loop. Besides the C language they have nothing in common with each other.


Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.


What is one fact anout c language?

It is case-sensitive.


What is the mean of switch in c language?

switch is a mechanism provided in the C language through which we can select one among various constant option based on value of a single event.


What is the program language c?

C is a pop language. C is a case sensetive language. C is motherof all language. C is block structure language. C is a high level language. C is advace of B language. C developed by D.richties in 1972 at AT & T Bell lab in USA. Sachin Bhardwaj 986854722 skbmca@gmail.com


Is the identifiers 'name' and 'NAME' different in c?

Yes they is different, C language are case-sensitive.


What is the difference between C language andprogramming language?

It's pretty much like the case of apple and fruit.C language is one of the programming languages.


A programming language that encourages structured programming?

C++ (or any other C language) encourages structured programming. I'm not sure if you are asking for an 'object oriented language' rather than structured. If that's the case, any C language or Java would fit the description perfectly.


What is default in switch is C language?

When in the switch none of the case's is true, the code at the default: is executed.


Whether HTML is case sensitive or C?

HTML is not case-sensitive, while C is a case-sensitive language. In HTML, the tags, attributes, and values can be written in uppercase or lowercase letters, and it will still be interpreted the same way by the web browser. For example, the "p" tag can be written as or , and both will be interpreted as paragraph tags. On the other hand, C is a case-sensitive language, which means that the identifiers such as variables, function names, and keywords must be written in the correct case. For example, "main" is different from "Main" and "MAIN" in C. It's important to keep in mind the case sensitivity rules while coding in these languages to avoid syntax errors or unexpected behavior.


How do you get original cursor in turbo c?

In turbo c command prompt select "options" in that click on "environment" and next click on "editor" next select " Insertmode" and press"ok" .After that u will get a original cursorhi this is padma priya if you get any doubts related to c language you can send mail to padma6959@gmail.com


Is java is high level language?

yes, java is high level language because to run it we requires jvm interpreter. In case of c language there is no need to interpret it...