fork download
  1. #include <stdio.h>
  2.  
  3. #define PRINT_INFO(name, age) \
  4.   printf("Name: %s\n", name); \
  5.   printf("Age: %d\n", age);
  6.  
  7. int main(void) {
  8. // your code goes here
  9. // printf("hello world");
  10. PRINT_INFO("utkarsh",'A');
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Name: utkarsh
Age: 65