Why isnt there a numbered, multi-level break statement to break out


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

Post New Answer

More C Interview Questions

What does a pointer variable always consist of?

0 Answers  


Explain the advantages of using macro in c language?

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


What is an operator?

0 Answers  


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  






Compare and contrast compilers from interpreters.

0 Answers  


Why Modern OS are interrupt driven?Give an example

3 Answers  


What is the difference between a free-standing and a hosted environment?

0 Answers   Aspire,


how to copy a string without using c function

5 Answers  


Explain how can a program be made to print the name of a source file where an error occurs?

0 Answers  


What are the 5 organizational structures?

0 Answers  


What is the 'named constructor idiom'?

0 Answers  


Categories