#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