Specifiers

PHOTO EMBED

Tue Jun 07 2022 17:16:50 GMT+0000 (Coordinated Universal Time)

Saved by @KanishqJ8

int main(){
    int a=8;
    float b=7.33;
    
    printf("Hello world \n");
    printf("%-8.4f this \n",b);
    
    return 0;
}
content_copyCOPY