fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int array[] = { 0, 1, 2 };
  6. printf("%d %d %d\n", 10, (5, array[1, 2]), 10);
  7. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
10 2 10