hello_world.cpp 510 B

12345678910111213
  1. //////////////////////////////////////////////////////////////////////////////////////////
  2. // if the code is for another author, give credit as below. Otherwise only add the Copyright piece
  3. // Author: xx and yy , organization
  4. //////////////////////////////////////////////////////////////////////////////////////////
  5. // Copyright (c) 2021 NVIDIA Corporation. All rights reserved.
  6. #include <stdio.h>
  7. int main() {
  8. // printf() displays the string inside quotation
  9. printf("Hello, World!");
  10. return 0;
  11. }