![]() Related Questions What is true about the followingC Functionsa.Need not return any valueb.Should always return an integerc.Should always return a floatd.Should always return more than one value. D Which of the following represents true statementeither x is inthe range of 10 and 50 or y is zeroa.x>=10 && x<=50 || y==0;b.c.d. D Which of the following is not an infinite loop ?a.while(1){....}b.for(;;){...}c.x=0;do{/*x unaltered Which of the following is not an infinite loop ?a.while(1){....}b.for(;;){...}c.x=0;do{/*x unaltered within the loop*/...}while(x==0);d.# define TRUE 0while(TRUE){....} D Read the folllowing code# define MAX 100# define MIN 100........if(x>MAX)x=1;else if(x D A Latest Answer : answer is 5 times ... What is incorrect among teh followingA recursive functiiona.calls itselfb.is equivalent to a loopc.has a termination condd.does not have a return value at all B # define prod(a,b)=a*bmain(){int x=2;int y=3;printf("%d",prod(x+2,y-10)); }the output of the program is a.8b.6c.7d.none A What is true about the following C FunctionsA. Need not return any valueB. Should always return an integerC. Should always return a floatD. Should always return more than one value Which of the following represents true statement either x is in the range of 10 and 50 or y is zeroA. x >= 10 && x <= 50 || y = = 0B. x<50C. y!=10 && x>=50D. None of these Which of the following is not an infinite loop?A. while(1){ ....}B. for(;;){...}C. x=0; do{ /*x unaltered within the loop*/ .....}while(x = = 0);D. # define TRUE 0 ... while(TRUE){ ....}
Sponsored Links
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||