Build log:
warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'int'
Program:
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");///for a new line
printf("Hello world ");///simple
printf("enter some values = %d %d %f",54432,54,54.76474)
printf("%d \n",232);///integer in new line
printf("%f \n",21.322432);///decimal in new line
printf("%ld \n",3809);///large integer in new line
printf("%lf \n",432758575375735.24);///large float in new line
return 0;
}