My coding is like this - it is for the spiral. I tried to do it but it doesn't work. If any one has any idea how to do it please advise.
#include "stdio.h"
#include "conio.h"
void main ()
{
int p,q;
for(p=0; p<100; p++)
{
printf("alt+219");\\where alt+219 is an ASCII character in C\\
}
for(q=0; q<100; q++)
{
printf("alt+220");\\where alt+220 is an ASCII character in C\\
}
}