Blog updated on daily basis with illustrations,do it yourself questions and solutions.
215332 enrollments till now from all over India!
days
hours minutes seconds
until
COURSE AT THIS PRICE
HELPING HANDS
FREE TO CODE
BEGINNER TO PRO
AFFORDABLE PRICE
Learn programming skills from scratch
This blog is basically for those who have no prior knowledge of programming. It goes from beginning to pro level. You could ping for your school/college assignments too.
It is all at a reasonable rate just INR 450(basic to moderate) and 800(pro plan) for course which is less than normal tution fees.
2 weeks trial @INR250. It could be upgraded to complete pack by paying 200 and 550 respectively,mailing order id @ helpmecode.org@gmail.com .
Feel free to code
You will get
- 2 quality illustrations/examples everyday.
- 1 Do it yourself question, solution provided next day.
- Within 2 months all the topics predefined data types, user defined data types, string, class, array, inheritance, polymorphism, data encapsulation, vectors, pointers and reference will be covered
- You can also ping your assignment questions up on the email or post on site to get solution.
PAY TO GET ACCESS TO CODE LEARNING.
Common payment gateways-credit, debit cards, paytm, UPIOther payment gateways also accepted.
SUBSCRIBE FOR UPDATES
Get new content delivered directly to your inbox.
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 | ||||
LEARN TO CODE C++
DETAILS
BEING A BLOG IT WILL BE UPDATED DAILY. DAILY YOU WILL BE PROVIDED WITH MINIMUM 2 ILLUSTRATIONS, 1 DO IT YOURSELF QUESTION AND SOLUTION OF TASK ASSIGNED.
HACK ME CODE 0
BASIC FORMAT #include<iostream> // #is preprocessor using namespace std; int main() //main function { // DECLARE VARIABLE eg: int a,b; //Perform function eg: cout<<“Product is”<<a*b; return 0; } Note:: // is used to add single line comments. They are not read by compiler. They help the reader to understand the code in a better way.
HACK ME CODE 2
To add two numbers by taking data from user #inlude<iostream> using namespace std; int main() { int a,b,sum; cout<<“Enter first number”; cin<<a; cout<<“Enter second number”; cout<<b; sum=a+b; cout<<“Sum of given numbers is”<<sum; return 0; }