fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char name[50] = "Sybil Marah" ;
  5. int age = 20 ;
  6. float gpa = 89.5 ;
  7.  
  8. printf("My name is Sybil Marahs, I am 18d years old, and my GPA is %.2f.\n" ,
  9. name, age, gpa) ;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
My name is Sybil Marahs, I am 18d years old, and my GPA is 89.50.