picoc/tests/55_array_initialiser.c
zik.saleeba 3dde83d48d Added new test
git-svn-id: http://picoc.googlecode.com/svn/trunk@580 21eae674-98b7-11dd-bd71-f92a316d2d60
2012-09-06 12:08:25 +00:00

13 lines
233 B
C

#include <stdio.h>
int main()
{
int fred[3] = { 12, 34, 56 };
double joe[] = { 23.4, 56.7, 89.0 };
printf("%d %d %d\n", fred[0], fred[1], fred[2]);
printf("%f %f %f\n", joe[0], joe[1], joe[2]);
return 0;
}