C++ course


1)How to print Hellow word in c++

#include "iostream"

using namespace std;

   int main(){
   
   
    cout<<"hellow word";
   
   
   
   }

2)size of Data type in c++ how to find

#include "iostream"

using namespace std;

int main(){

cout<<"Size of integer=";

cout<<sizeof(int);
}

No comments:

Post a Comment