diff --git a/simple_read b/simple_read new file mode 100644 index 0000000..a502ba3 --- /dev/null +++ b/simple_read @@ -0,0 +1,25 @@ +// Header Files +#include +#include + +//Main Function + +using namespace std; + +int main() { + // Local Variable 'a' Declaration + int a; + + cout << "Simple Program for Read user Input (Integer) Using cin \n"; + + cout << "Enter Number : "; + cin >> a; + + cout << "Entered Input Is = " << a; + + // Wait For Output Screen + getch(); + + //Main Function return Statement + return 0; +} \ No newline at end of file