You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/Create and Use Your Own Hea...

8 lines
212 B
C

#include<stdio.h>
#include "myfirstheader.h"
void main() {
int num1 = 10, num2 = 10, num3;
num3 = add(num1, num2);
printf("Addition of Two numbers : %d", num3);
}