EXAMPLE OF RUN TIME ERROR

#include<iostream.h>
#include<conio.h>
void main()
{
  int i;
  for(i=1;i<=1000000;i++)
  cout<<i;
  getch();
}

Comments

Popular Posts