You have to Subscribe to Al Hidaayah in order to schedule zoom meeting. You can Subscribe from here

AL HIDAAYAH

Stephen G Kochan- Patrick H Wood Topics In C Programming -

int main() int num1, num2; printf("Enter two numbers: "); scanf("%d %d", &num1, &num2); printf("Addition: %d\n", add(num1, num2)); printf("Subtraction: %d\n", subtract(num1, num2)); return 0;

* `if-else` statements: ```c if (condition) // code to execute if condition is true else // code to execute if condition is false Stephen G Kochan- Patrick H Wood Topics in C Programming

int subtract(int a, int b) return a - b; int main() int num1, num2; printf("Enter two numbers: