I want to study how websites work and how they are built. I am engaged in automation of various systems at an amateur level and I want to learn how to build my own systems on my own and not use third-party programs. I have perseverance and like to communicate. At the moment, my goal is to create web applications for automated systems.
#include <iostream>
using namespace std;
int sum(int a, int b) {
return a + b;
}
int sub(int a, int b) {
return a - b;
}
int main() {
int c[2];
c[0] = sum(5, 3);
c[1] = sub(5, 3);
for(int i = 0; i < size(c); i++) {
cout << c[i] << endl;
}
return 0;
}
A1