it gives output : learningstring16.exe has stopped working ; please help someone

  • Thread starter Thread starter krishnasu1
  • Start date Start date
K

krishnasu1

Guest
#include<stdio.h>
#include<conio.h>
int main()
{
int i;
char s[]="Sky is blue";
while(s!=0)
{
printf("%c%c%c%c\n",s,i,*(s+i),*(i+s));
i++;
}
getch();
return 0;


}


Continue reading...
 
Back
Top