Home | History | Annotate | Download | only in read
      1 //===-- main.cpp ------------------------------------------------*- 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 
     11 int main (int argc, char const *argv[])
     12 {
     13     char my_string[] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 0};
     14     double my_double = 1234.5678;
     15     printf("my_string=%s\n", my_string); // Set break point at this line.
     16     printf("my_double=%g\n", my_double);
     17     return 0;
     18 }
     19