fork(1) download
  1. #include<stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. char *s = "Geeks Quiz";
  8.  
  9. int n = 7;
  10.  
  11. printf("%.*s", n, s);
  12.  
  13. return 0;
  14.  
  15. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Geeks Q