Answers for "Print value of data in c++"

C++
0

Print value of data in c++

#include<iostream>
using namespace std;
int main()
{
    int num=10;
    cout<<"The Value of 'num' is "<<num;
    cout<<endl;
    return 0;
}
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language