Tuesday, 10 November 2020

First C++ Program

#include <iostream>

using namespace std;

main ()

{

    cout<<"Welcome to the World of C++"<<endl;

    cout<<"Hello";

}

No comments:

Post a Comment

Java Program to count the total number of characters in a string

 //Java Program to count the total number of characters in a string import java.util.*; public class CountChars {     public static void mai...