Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 14th, 2012  |  syntax: None  |  size: 0.16 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // What is the expected output?
  2. main()
  3. {
  4.     int a;
  5.     int b;
  6.     for (a = 0,b = 0;a < 10,b < 5;a++,b++)
  7.     {
  8.         printf("%d %d\n",a,b);
  9.     }
  10.     return 0;
  11. }