What will be the output of the folllowing program on GCC compiler?<
![]()
Practice Control Instructions –
What will be the output of the folllowing program on GCC compiler?
#include <stdio.h>
int main() {
char s[]="Hello india";
int i=0;
while(s[i]){
if(s[i]!=)
s[i]=s[i]+1;
i++;
}
printf("%s
",s);
return 0;
}