Thursday, September 29, 2016

Code for examole in 1.3.1




#include <iostream>
using namespace std;
int main(void) {
int counter;
int variableWithvalueAssigned = 3;
cout << "this is the value of counter";
cout << counter;
cout << "\n this is the value of variableWithvalueAssigned ";
cout << variableWithvalueAssigned;
return 0; }

No comments:

Post a Comment