Free Code Center Free Code Center "Unlock the Code to Limitless Possibilities: Empower Your Programming Journey!" Menu factorial program in c Factorial Program in C || What is the factorial of 100 in C
error: microsoft visual c 14.0 or greater is required. get it with "microsoft c build tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
error: microsoft visual c 14.0 or greater is required. get it with "microsoft c build tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
#include using namespace std; int main() { int a = 3; float b = 4.5; double c = 5.25; double sum; sum = a + b + c; cout << "The sum of a, b, and c is", sum << endl; return 0; }