blob: 6902bc415681ab23a0911ccc29cfb23ff6457878 [file] [log] [blame]
Johnny Chenaf6e82f2011-07-12 23:18:03 +00001//===-- main.c --------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include <stdio.h>
10
11char my_global_char = 'X';
12const char* my_global_str = "abc";
Enrico Granata9128ee22011-09-06 19:20:51 +000013const char **my_global_str_ptr = &my_global_str;
Johnny Chen0d0dff432011-07-13 00:31:31 +000014static int my_static_int = 228;
Johnny Chenaf6e82f2011-07-12 23:18:03 +000015
16int main (int argc, char const *argv[])
17{
18 printf("global char: %c\n", my_global_char);
19
20 printf("global str: %s\n", my_global_str);
Johnny Chen0d0dff432011-07-13 00:31:31 +000021
22 printf("argc + my_static_int = %d\n", (argc + my_static_int));
Johnny Chenaf6e82f2011-07-12 23:18:03 +000023
24 return 0;
25}