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-variableAdd a thoughtful commentNo comments yetBe the first to start the conversation.