View on GitHub

Manav-Ram19.github.io

Manav’s Webpage

Made with Markdown

Give a Man a Fish, and You Feed Him for a Day. Teach a Man To Fish, and You Feed Him for a Lifetime.

LinkedIn

image

Warren College, UCSD

Classes:

  1. CSE 130
  2. CSE 151A
  3. CSE 110
  4. POLI 27

In C++ the difference between this code block

for(int i=0; i<5; i++) {
  cout<<i<<endl;
}

and this code block

int i=0;
do {
  cout<<i<<endl;
  i++;
 } while(i<5);

is that if instead of int i=0, we started out with int i=5, then the first code block would not output anything, whereas the second code block would output 5.

Quarter Planner: