C++Tutorial

Welcome to video tutorial for c++!

this is my first video tutorial, I hope to add more videos soon, this one cover the function printf and using %d


c++ code of this program

// first c++ video tutorial
#include
using namespace std;

int main(){
int n;
n = 10;
printf("Number : %d \n", n);
system("pause");
return 0;


}