Answer Posted / 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 |
Post New Answer View All Answers
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
How can you increase the size of a dynamically allocated array?
Explain the difference between the local variable and global variable in c?
What does the format %10.2 mean when included in a printf statement?
Explain the difference between ++u and u++?
What is extern c used for?
What is the process of writing the null pointer?
Can you please explain the difference between syntax vs logical error?
Write a program that accept anumber in words
Place the #include statement must be written in the program?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Can a pointer be static?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above