Main(){ int i=1,j=1,k=0,l=1,m; m=++i && ++j && ++k || ++l; Printf("%d %d %d %d %d",i,j,k,l,m);}
Latest Answer: A volatile variable is nothing but a local variable which gets destroyed as soon as its scope reachs to end.we use the constant qualifier to make the value unchangable. This value could be volatile. ...
Latest Answer: #include#includevoid main(){int i,flag=0,k,l,m,n;char str[100];clrscr();printf("enter the string n");scanf("%s",str);l=strlen(str);printf("%d",l);l=l-1;i=0;while(strcmp(str[i],str[l])==0){if(i+1==l){printf("its ...
View page << Previous 2 3 4 5 [6] 7 8 9 10 11 Next >>

Go Top