globals.c revision 8db6cf5935667b206646bba9a0cc4e4cc8d0f943
1//===-- 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";
13static int my_static_int = 228;
14
15int main (int argc, char const *argv[])
16{
17    printf("global char: %c\n", my_global_char);
18
19    printf("global str: %s\n", my_global_str);
20
21    printf("argc + my_static_int = %d\n", (argc + my_static_int));
22
23    return 0;
24}
25