SAHIL ALIthestarsahil.hashnode.dev·Mar 24, 2024The Tale of Two Variables: Auto and Static#include<stdio.h> void increment (); //function decalaration int main(){ increment (); // function call 3 times increment(); increment(); return 0; } void increment (){ // function definition ...auto-variable