Apr 17, 2025
g++ --version.#include <stdio.h> for input/output functions.int main() { ... }.printf with format specifiers, e.g., %d for integers.gcc filename.c -o output and run with ./output.int, float, char, double, bool (include <stdbool.h> for booleans).int age = 21;.+, -, *, /, %.+=, -=, etc.&&, ||, !.int add(int a, int b);.main() to ensure correct usage.fopen(), fclose(), fprintf(), fgets() for file operations.