Connect with us

C program

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

Correct answer is: The value of shifty is 2700

Recently updated  

on

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

Advertisement
Advertisement