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