fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=1;
  5. int b=10;
  6. int i;
  7. char array[100];
  8. for(i=0;i<100;i++)
  9. {
  10. scanf("%c", array[i]);
  11. }
  12. printf("%s",array[0]);
  13. printf("%d", b);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
(null)10