Solution to hw00a
         admin
      
      #include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
    printf("Hello, CP!\n");
    return EXIT_SUCCESS;
}
- Log in to post comments
 
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
    printf("Hello, CP!\n");
    return EXIT_SUCCESS;
}