Learn what's best for you. Free.
No hidden costs. It's just a love affair with programming.
We started this project as a way to provide free education for those who are willing to learn but could not afford expensive courses. This initiative targets to add more courses as time progresses, and focuses on clearing doubts about programming languages in general.
We provide in-depth course contents for various programming languages in curriculum fashion to begin with.
Our approach involves learn-by-doing. Practice the examples, quizzes and solve the demos to become expert.
Although optional, but earning a certificate means a lot. So we recommend that you get certified by us.
#include<stdio.h>
int main(int argc, char **argv) {
printf("Hello World\n");
return 0;
}
#include<iostream>
using namespace std;
int main(int argc, char **argv) {
cout<<"Hello World"<<endl;
}
public class Hello {
public static void main (String[] args){
System.out.println("Hello World");
}
}
print('Hello World')
<html>
<head>
<title>Website</title>
<link href="app.css" rel="stylesheet">
</head>
<body>
<h1 class="greeting">Hello World</h1>
<script src="app.js"></script>
</body>
</html>
.greeting {
color: crimson;
text-align: center;
font-family: sans-serif;
font-size: 64px;
}
console.log('Hello World');