In a switch statement, explain what will happen if a break statement is omitted?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are dangling pointers in c?

0 Answers  


How many types of errors are there in c language? Explain

0 Answers  


What is meant by preprocessor in c?

0 Answers  


Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986

1 Answers  


pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )

2 Answers   Persistent,






How can you increase the size of a dynamically allocated array?

0 Answers   TISL,


How do I access command-line arguments?

2 Answers   Bosch, Wipro,


Is using exit() the same as using return?

0 Answers  


how to get starting address of a running C program

3 Answers  


In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above

15 Answers   Accenture, TCS,


What is a pointer on a pointer in c programming language?

0 Answers  


Categories