I am trying to calculate stack usage and execution time of below program,but facing difficulty to understand ,could anyone please tell me how to calculate it..
addition of two number in c
#include <stdio.h>
int main()
{
int a,b,c;
printf("enter two numbers\n)";
scanf("%d%d",&a,&b);
c=a+b;
printf("sum of two numbers %d",c);
return 0;
}