1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
28 strcpy(strarr,"Nested Hello world!");
29 strptr = new char[128];
30 strcpy(strptr,"Nested Hello world!");
47 int main (int argc, const char * argv[])
49 char strarr[32] = "Hello world!";
51 strptr = "Hello world!";
52 int intarr[5] = {1,1,2,3,5};
53 float flarr[7] = {78.5,77.25,78.0,76.125,76.75,76.875,77.0};
62 return 0; // Set break point at this line.