#include<stdio.h>
main()
{
    int a=10,b=20;
    float k=55.6399888;
    printf("a=%-5d,b=%-6d\n",a,b);
    printf("k=%5.6f",k);
}
     
           
Note: Need to be arranged in compiler after copied
   

 OutPut:

a=10 ,b=20 k=55.639988