exit () is used to
a) exit () terminates the execution of the program itself
b) exit () terminates the execution of the loop
c) exit () terminates the execution of the block
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
write a proram to reverse the string using switch case?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What are the concepts introduced in OOPs?
I came across some code that puts a (void) cast before each call to printf. Why?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What is a buffer in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What are header files why are they important?
char ch="{'H','I',0};printf("%s",ch);what is output
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
Can we assign integer value to char in c?