File: debuglink.c

package info (click to toggle)
python-pyelftools 0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68,964 kB
  • sloc: python: 15,903; ansic: 298; asm: 86; makefile: 24; cpp: 18; sh: 4
file content (15 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int addNumbers(int a, int b) {
    return a + b;
}

int main() {
    int num1 = 7;
    int num2 = 3;
    int sum = addNumbers(num1, num2);

    printf("Sum of %d and %d is %d\n", num1, num2, sum);
    return 0;
}