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
Can you write the function prototype, definition and mention the other requirements.
What is unary operator?
Explain what is the general form of a c program?
What does extern mean in a function declaration?
Is fortran still used in 2018?
write a addition of two no. program with out using printf,scanf,puts .
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
how to return 1000 variables from functio9n in c?plz give me code also
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a<b,printb.find the sum digits of that number & then print.if a==b multiply 10 with a & add 20 with b store in c and then print
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????