Don't do builtin_frame_address test with ARM gcc
[tinycc.git] / tests2 / 02_printf.c
blob4c34dd8746c6d9da72b09a3884f04e16c731c690
1 #include <stdio.h>
3 int main()
5 printf("Hello world\n");
7 int Count;
8 for (Count = -5; Count <= 5; Count++)
9 printf("Count = %d\n", Count);
11 printf("String 'hello', 'there' is '%s', '%s'\n", "hello", "there");
12 printf("Character 'A' is '%c'\n", 65);
13 printf("Character 'a' is '%c'\n", 'a');
15 return 0;
18 // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :