Please help me understand this line and firstly I was using getch()
but then I used return(0)
and it shows this:
Process returned 14 (0xE) execution time : 0.015 s
#include <stdio.h>
#include <conio.h>
#include <math.h>
int add(int a, int b) {
int c;
c = a + b;
return (c);
}
void main() {
int x, y, z;
x = 5;
y = 10;
z = add(x, y);
printf("The sum is: %d", z);
return (0);
}