#include stdio.h
int main() {
int a1 = 3;
int d = 4;
int n = 1;
int an = a1 + (n-1) * d;
printf("The first term of the arithmetic progression is %d\n", a1);
printf("The common difference is %d\n", d);
printf("The number of terms is %d\n", n);
printf("The nth term of the arithmetic progression is %d\n", an);
return 0;
}
What is the output of the following program