INT and FLOAT

PHOTO EMBED

Sun Sep 18 2022 06:04:54 GMT+0000 (Coordinated Universal Time)

Saved by @naveen_63833592 #c

#include<stdio.h>
#include<conio.h>
void main()
{
    int a=5;
    printf("%d \n",a); //%d etc are  format specifiers \n new line command
    
    float b=9.2;
    printf("%f",b);
    
    getch();
}
content_copyCOPY

new line format specifiers int float