#include <stdio.h>

int main() {
    int num ;
    num = 10 ;
    
float num1 ;
    mun1 = 10.5;

    char text ;
    text = 'a';
        
    print("%d\n",num);
         print("%f\n",num1);
         print("%c\n",text);
    return 0;
}

Embed on website

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