Exercise 2 Due at 11:59:00 PM EDT on 08/31/2020 through Canvas 1. Reading Exercise. Read the following sections of the textbook. You wouldn't submit anythign for this part. Section 2.6 Integer Data Types Section 2.7 The char Data Type Section 2.9 Floating Point Data Types Section 2.10 The bool Data Type Section 2.12 Variable Assignemnts and Initalization 2. Write a C++ program to a. Declare a long variable. Initialize it with a hexadecimal value of your choice, then print it. b. Declare a char variable. Print it without initializing it. Now, initialize it with the letter 'k'. Print the value again. c. Declare a double precision floating point variable. Initialize it by reading it in from the user. Print 2 * the number. d. Make sure you have a comment with your name, FSUID (Canvas Login) and the line "This program is the individual work of " at the top of your program e. Turn in your program. The "main.cpp" file, which you will be turning in, will be located in the Folder for the current project in CLion. The current project will be located on you computer in the location you specified while creating the project (Desktop, CLionProject folder, etc). Sample Run: The long value is 358649376956 The char value is ^ (this might be different for you) The char value is k Enter a float value: 34.56901 Answer: 73.13802