fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char *s= "First Name";
  6. float x= 12345;
  7. printf("%-15s%c\n", "First Name", ':');
  8. printf("%-15s%c\n", "Last Name", ':');
  9. printf("%-15s%c\n", "Age", ':');
  10. printf("%10.3f\n", (float)x);
  11.  
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
First Name     :
Last Name      :
Age            :
 12345.000