Write a program to print "My First C++ Program".
Answers
Answered by
0
Answer:
# include <iostream>
int main()
{
std:: cout << “My first C++ program ” << std::endl;
return 0;
}
Answered by
0
#include <stdio.h>
int main()
{
puts ("my first c++ program");
return 0;
}
Similar questions