Shaswat Kumar
Member
- Member since
- Sep 20, 2018
- Last active
- Sep 21, 2018
- Total activities
- 0
Activity feed
Recent contributions
-
#Threads
3cdaffc3-bd32-4339-82d4-a80990c1eb63
but the variable is ..same that is i....
-
#Threads
03ebd76f-6683-485c-bbdf-0a52e52590e3
but i have to study c first.. im in first year in cse branch.. and the questions in exams are basically this...
-
#Threads
8f1d4f7e-b3ab-4462-a8cd-5f642f4880e2
yes..u r right..i got it...thanks
-
#Threads
de6174ef-7f04-4629-bada-ff4b63893fe9
the code is same,the output of this code is 1010101010my question is why this...because once it enters the loop..the value of i...
-
#Threads
c85c2cac-d464-41e6-b8ea-0349cbaa58db
this program prints 10..5 times in this situation also
-
#Threads
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...