12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- # 1 "4.3.example.c"
- # 1 "<built-in>"
- # 1 "<command-line>"
- # 31 "<command-line>"
- # 1 "/usr/include/stdc-predef.h" 1 3 4
- # 17 "/usr/include/stdc-predef.h" 3 4
- # 32 "<command-line>" 2
- # 1 "4.3.example.c"
- int main()
- {
- int yo=1;
- switch (yo) {
- case NUMBER:
- printf ("yes");
- break;
- default:
- printf ("no");
- break;
- }
- return 0;
- }
|