b2c4d6ce83
as they should have. Now more permissive in declarations of void main() git-svn-id: http://picoc.googlecode.com/svn/trunk@520 21eae674-98b7-11dd-bd71-f92a316d2d60
22 lines
314 B
C
22 lines
314 B
C
#include <stdio.h>
|
|
|
|
struct point
|
|
{
|
|
double x;
|
|
double y;
|
|
};
|
|
|
|
struct point point_array[100];
|
|
|
|
int main()
|
|
{
|
|
int my_point = 10;
|
|
|
|
point_array[my_point].x = 12.34;
|
|
point_array[my_point].y = 56.78;
|
|
|
|
printf("%f, %f\n", point_array[my_point].x, point_array[my_point].y);
|
|
|
|
return 0;
|
|
}
|