File: debug.cpp

package info (click to toggle)
icecc 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,520 kB
  • sloc: cpp: 14,058; sh: 3,006; ansic: 767; xml: 744; makefile: 231; asm: 2
file content (10 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
struct DebugStruct
    {
    int debugMember;
    };

int main() { // first line of main function
    static DebugStruct debugObject;
    debugObject.debugMember = 1243;
    return debugObject.debugMember;
    }