Shaswat Kumar
Member
Member since
Sep 20, 2018
Last active
Sep 21, 2018
Posts contributed
6
Recent posts
-
@shaswat-aytPha • Oct 26, 2024Oct 26, 20241.6K
Why does this C Program print "10" five times?
#include<stdio.h> int main() { int i; for(i=0;i<5;i++) { int i=10; printf("%d",i); }return 0; }why this program prints 10 ,..5 times...the value of i will...