fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char borderLine[8] = {'\0'};
  5. sprintf(borderLine,"%.*s", 8, "=");
  6. printf("%s", borderLine);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
=