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
What are the different types of control structures in programming?
How to add two numbers with using function?
Which is an example of a structural homology?
Can you think of a logic behind the game minesweeper.
What is typeof in c?
Is c easy to learn?
What language is lisp written in?
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
What are the disadvantages of a shell structure?
What is a const pointer in c?
What are .h files and what should I put in them?
What is the difference between fork() and vfork()?