Skip to main content

Posts

Showing posts with the label Say "Hello

Say "Hello, World!" With C++ Hackerrank Solution

 Say "Hello, World!" With C++ Hackerrank Solution For Explanation Watch Video: Code: #include   < iostream > #include   < cstdio > using   namespace  std; int  main() {     printf( "Hello, World!" );      return   0 ; }

Say "Hello, World!" With Python Hackerrank Solution

 Say "Hello, World!" With Python Hackerrank Solution For Explanation Watch Video: Input Format You do not need to read any input in this challenge. Output Format Print  Hello, World!  to stdout. Sample Output 0 Hello, World! Code: print ( "Hello, World!" )