#include <iostream> using namespace std; int main(){ int a = 5; float b = 6.67f; char c = 'd'; cout << a + (int)b << endl; cout << (char)(c + a) << endl; }
To embed this project on your website, copy the following code and paste it into your website's HTML: