/* Example of code with sub operation */ int main() { int result, num1=20, num2=10; result = num1 - num2; return 0; }