Is exit(status) truly equivalent to returning the same status from main?
No Answer is Posted For this Question
Be the First to Post Answer
What are variables c?
What is an auto variable in c?
Why void is used in c?
Is using exit() the same as using return?
What type is sizeof?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
When is a “switch” statement preferable over an “if” statement?
What is structure in c definition?
In a byte, what is the maximum decimal number that you can accommodate?
Write a program in c using only loops to print * * * * * *******
Explain how are portions of a program disabled in demo versions?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }