@@ -0,0 +1 @@
+/cmake-build-debug
@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 3.19)
+project(CppYoutube)
+
+set(CMAKE_CXX_STANDARD 17)
+add_executable(CppYoutube main.cpp)
@@ -0,0 +1,13 @@
+#include <iostream>
+using namespace std;
+int main() {
+ float annualSalary;
+ cout << "Please enter you annual salary" << endl;
+ // cin >> annualSalary;
+ // cout << "Your monthly salary is " << annualSalary / 12<<endl;
+ cout << "Size of float" << sizeof(float) << endl;
+ cout << INT_MAX<<endl;
+ return 0;
+}