Answers for "c++ cout numbers"

C++
0

c++ output

#include <iostream>

int main(){
  std::cout << "Hello World!" << std::endl; // prints "Hello World"
}
Posted by: Guest on October-07-2020
0

c++ input from terminal when program is called

#include <iostream>
#include <string>

int main( int argc, char* argv[] )
{
    std::string my_arg;

    // First argument is always the name of your program
    std::cout << argv[0] << std::endl;

    if( argc == 2 )
    {
        // Something has been passed in
        my_arg = argv[1];
        std::cout << "Argument passed in is " << my_arg << std::endl;
    }

    return 0;
}
Posted by: Guest on October-29-2020
0

c++ cout int

#include <iostream>

std::cout << "Hello, World!" << std::endl;
Posted by: Guest on June-30-2020

Browse Popular Code Answers by Language