#include <stdio.h> #define calcA 5 + 3 #define calcB 4 + 6 int main() { int Res = calcA * calcB; printf("%d\n", Res); }
23
Previous Question Next Question
Your comments will be displayed only after manual approval.