fork download
  1. #include <stdio.h>
  2.  
  3. void resume();
  4. int main()
  5. {
  6.  
  7. resume();
  8. return 0;
  9. }
  10.  
  11. void resume(){
  12. printf("\n my name is tharun,age-18yeras,12th percentage 91");
  13. }
  14.  
Success #stdin #stdout 0s 4268KB
stdin
Standard input is empty
stdout
 my name is tharun,age-18yeras,12th percentage 91