Comments/C++

#include<iostream>
using namespace std;

/* this
is 
multi
line 
comment */
int main(){
    int sum = 6;
    cout<< "Hello world"<< sum;
    return 0;
}

//comments comment

Comments

Post a Comment