ONLINE COMPILERS
LIBRARY
MANUAL PAGES & DOCS
CONTACT
Latest Users' Questions
User Submitted Question!
Name: Ghaderi
Title:
Soal
Question:
Title:
Soal
Question:
int i=1 , s=0 , n=10;
do {i*=2 ; s =i * 2;} while (I <= n);
Name: jae
int i=1 , s=0 , n=10;
do {i*=2 ; s =i * 2;} while (I <= n);
where is the declaration for l?
if you program
int i=1 , s=0 , n=10, l=0;
do {i*=2 ; s =i * 2; l } while (I <= n);
at the end of this code i will be 2^10
s will be 2^20 i think