Connect with us

C Language

C program

Computer

What is output of given c program:
main(){
int i = 8;
while(i=8){
printf(“Welcome on Govtexamresults”);
i++;
}
}

Correct Answer is : Given text is printed infinite time

Recently updated  

on

Q.#include
void main(void){
int shifty;
shifty=0570;
shifty=shifty>>4;
shifty=shifty<<6;
printf(“The value of shifty is %o \n”,shifty);
}

Q.In the context of while loop and Do while loop in C / C++, which of the following is not true

Q._____ in C language is also known as record.

Q.Which language is called as the second generation language ?

Q.The statement i++; is equivalent to:

Q.Which statement is correct for get and put functions in c

Advertisement
Advertisement