Saturday, January 25, 2020

CPP: For loop

#include <iostream>
using namespace std;
int main()
{
for(int i =0; i < 10; i++)
{
cout << "For Loop : " << i << endl;
}
return 0;
}
view raw for.cpp hosted with ❤ by GitHub


To build:
$: clang++ for.cpp

Run it:
$: ./a.out

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...