void fun(char *ss){ int i; for(i=0;ss[i];++i) { if(i%2&&ss[i]>='a'&&ss[i]<='z') { ss[i]+='A'-'a'; } }}