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

Untitled

By: a guest on Jul 17th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 13  |  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 lexical and syntactic analysis during the process of compiling in C Compiler?
  2. int a = 10;
  3.      if (a < 4)
  4.      {
  5.           printf("%d",a);
  6.      }
  7.        
  8. #define En(x) Abcd ## x ## x
  9.  
  10. enum En(5)
  11. {
  12.     a, b = 20, c, d
  13. };