#include<iostream>
using namespace std;
int main()
{
    float a=3.54;
    float b=12.54;
    cout<<"Maximum is: "<<((a>b)?(a+5):(b*2))<<endl;
    cout<<sizeof(a);
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: