#include <stdio.h>
main()
{
printf("Hi mom\n");
}
#include <stdio.h>
main()
{
double x;
double y;
int z;
x = 3.;
y = x ;
x = x*x ;
printf("answer is %lf %lf\n",x,y);
z = 4;
printf("int is %d\n",z);
}
#include <stdio.h>
main()
{
double x ;
x = -10. ;
while (x<10.) {
printf("%lf %lf\n",x,x*x);
x = x + .1;
}
}