8 lines
212 B
C
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);
|
||
|
}
|