Subscribe For Free Updates!

We'll not spam mate! We promise.

Showing posts with label course. Show all posts
Showing posts with label course. Show all posts

Wednesday, 6 April 2016

How to make a console calculator in programming in urdu

C language is a very famous language in the market. Everyone wants to learn C program because C language is an only one language which is the base of every successful programmer. Some days ago I have posted a complete course of C programming in Urdu and Hindi language. This course contains more than 25 video lectures. So you can watch this course. 

As I tell you that in the C programming course that first we learn about basic functionalities of C programming and then we will move on the projects section. So we have successfully completed our course and now the time is to move on the projects section. This is the first project of our course. In this project I will teach you that how you can easily make a console calculator. This calculator has complete functionalities like getting sum result, multiplication result, division result, and also subtraction result of any numbers.  

What is the functionalities of this calculator program

This calculator program can apply any function like plus, minus, multiply and divide. It collects three inputs from user on run time first input is “Value 1” and second input is “operation (plus minus etc)” and third is “value 2”.If the user enters the sign “+” then it will display the sum of both these values. Simply it depends on the mathematical operation which is enters by the user. If the user applies an invalid value then system performs beep sound. 

How to make this calculator?

1) Write the basic structure of C program.
2) Get three variables two integer and one character name as int value1, value2 and char operation.
3) Get input from the user by using printf() and scanf() function.
4) Start switch statement
5) Pass it the char variable “operation”.
6) Inside the curly braces write the below conditions.

switch(operation){
                                case '+':
                                                printf("The result is:%d",val1+val2);
                                break;        
                                case '-':
                                                printf("The result is:%d",val1-val2);
                                break;
                                case '*':
                                                printf("The result is:%d",val1*val2);
                                break;
                                case '/':
                                                printf("The result is:%d",val1/val2);
                                break;
                                default:
                                                printf("Invalid input!\a");
                                               
                }

After doing that compile your program and run. And your program it ready. Let’s use this program by performing different values and operation. And enjoy!

Watch This video How to make a console calculator in C programming

The source code of this program is:-

//This is a calculator program
#include<stdio.h>
#include<conio.h>
int main(){
                int val1,val2;
                char operation;
                printf("Enter value 1:");
                scanf("%d",&val1);
                printf("Enter operation:");
                scanf("%s",&operation);
                printf("Enter value 2:");
                scanf("%d",&val2);
               
                switch(operation){
                                case '+':
                                                printf("The result is:%d",val1+val2);
                                break;
                                case '-':
                                                printf("The result is:%d",val1-val2);
                                break;
                                case '*':
                                                printf("The result is:%d",val1*val2);
                                break;
                                case '/':
                                                printf("The result is:%d",val1/val2);
                                break;
                                default:
                                                printf("Invalid input!\a");
                                               
                }
getch();
}

I hope you enjoy this tutorial. If you have any question then please asks your question in comment box and we will reply you very soon. So at the end of this tutorial I will tell that please like comment and join our site for later updates and new tutorials. In some days I’m going to start a online money making course for everyone. So that’s why please join our site.

Monday, 7 March 2016

Learn C programming in Urdu/Hindi videos


        In this course we will learn everything about “C” language. After reading the upper definition of “C” language you know that this is very important language that’s why I’ll try to make this course interesting and easy to understand as possible. In this course we will make some Games in “C” language. 

What is “C” language?

“C” is programming language which is the mostly used by programmers. There are many programming languages Java, VB and many other languages but “C” is a very famous and powerful programming language. You can develop any desktop software using “C” language. Many software developed in “C” language like VLC media player, Photoshop, Coral draw and many other software. So this is a very good programming language. You can create any type of software using this language. “C” language is base of every successful programmer. If you are successfully learned “C” then you will be able to learn every type of language.

Brief history of “C” language.

       “C” is a popular high level language. It was developed by Dennis Ritchie at At&T Bell Laboratories in 1972. C language was derived for of an earlier programming language called B. The “C” language basically developed for writing programs under UNIX operating system. The flexibility of “C” made it famous in the market. The earlier version of “C” was known as K&R (Kernighan and Rirchie). The American National Standard Institute (ANSI) developed the standard version of language. This new version of the language provided many new functions which were not available in the earlier versions. 

Start learning

Making first program

Write the program below in your compiler. You can use Turbo C++ or you can use Dev C++.

#include<stdio.h>
#include<conio.h>
Void main(){
Printf(“azeemIT.blogspot.com”);
}
Output:  azeemIT.blogspot.com

 Detail: “#include<stdio.h>” and” #include<conio.h>” are the header file or libraries of “C”. “Void main()” is a function which is used for start a program the actual written in this function. Printf() is built -in keyword provided by “C” for print something (which is written in the double quotes) on the screen. And semicolon “;” is called statement terminator which is used for ending statement. This program is the basic structure of “C” program. You must have to write these line of codes before writing your actual program.

 Variable?

       A variable is a named memory location. It is used to store program’s input data and its computational result during execution of program. The value of a variable may change during the execution of program but the name of variable cannot be changed.

Example of variable:   roll_no = 10;

Remember: you cannot be able to use space between the name of variable. You can use underscore        and. And you can also not be able to start variable name with numbers and special                    characters.

Data types

           There are four types of data in “C”. Which are Integer, Float, Character (String) and Boolean. These data types are used to define a variable before using. You must have to define the data type of variable which you are going to use.

See the data types below

Integer: Integer data type is defined as “int”. By using this data type you can just store numerical date like 0,1,2,3,4,5. It means you can just store numbers. You cannot be able to store names and special character like $,&.

Example of integer:  int roll_no = 50;

Float: In float data type you can store floating point data like 14.5 and 2.0 etc. You can use this data type by “float”.
Example of Float:   float height = 5.6;
Character (string): Character data type is defined by word “char” in “C”. This data type is used for storing character data like name and special characters etc.
Example of character: char dollar = ‘$’;
Boolean: Boolean data type is used for writing storing true or falls conditions. It is defined by word “bool”.

Example:  bool condition = true;
Comparing operators“==”:  

       This symbol is used for comparing two things. This is used for check whether the given condition is equal to. In “C” programming single equal to is used for assign some value to a variable and double equal to is used for comparing two variables.
Some other comparing operators are below. I thing you know about these signs which are below.
“>”  “<”  “>=”  “=<”  “!=”
If statement
”If” statement is used for checking some condition. “If” statement is a very good functionality of “C” language. The syntax of “If” statement is below.
If(condition){
This part will execute when the condition is true.
}
“else” statement
“else” statement will be executed if the condition is falls. It means that we use this statement when the given condition will not satisfy. See example.
 int student_age = 20;
Example: if(student_age < 18 ){
 printf(“welcome”);
}else{
Printf(“Sorry you are over age!”);
}
Output: Sorry you are over age!
Detail: In the above program I give the condition that if the student age is less than 18 then print “Welcome” or if the student age is greater than 18 then print “Sorry you are over age”. So this is the use of “if” and “else” statements.

Watch these videos to understand complete course in practical

First video of this course [ Introduction ]



Click and watch complete course on youtube

Admin feedback 

         I hope you enjoy this course. In this course I was try my best to teach you very well as possible. So now I’m waiting of your good feedback. Your good comments give me a new hope then I will provide you GUI course in “C” language for free. I will also provide you tutorials about some interesting programs and games. As usual I asked you if you have any question then please write your question the comment box.


Thursday, 4 February 2016

Complete course of Adobe Photoshop CS 6


Hi! Guys my name is Muhammad Azeem Shami and I create this course for you.  In this course of Adobe Photoshop I will give you the training of Photoshop CS6 from basic to advance. I’m sure this tutorial series will be the best series forever because in this series I will provides you a huge collection projects in Photoshop. I’m always trying to give you something cool but easy to understand. That’s why I create this course because everyone tried to make beautiful images. Photoshop is a most famous image editing software. I think that you are crazy to watch this course. First of all read the outline of this course and then watch classes one by one.

Requirements for this course

 1. Adobe Photoshop CS6
 2. PC or Laptop

 I need to have any knowledge to get this course?

No! Even if you don’t know something about graphics and Photoshop then you also will be able to get this course. If you have already worked in Photoshop or graphics designing and you want to learn more then you can also get this course.

How much I learn from this course?

In this course we start training from beginners and will go to advance level. And also we make some professional projects in the end of this course.

Photoshop CS vs. Photoshop 7.0

Photoshop CS 6 is the latest version and Photoshop 7.0 is a oldest version of Photoshop. Some tools are missing in Photoshop 7.0 with respect to Photoshop CS 6. 

Please watch this video to get introduction of this course



Course outline

Section 1(Introduction)

1                       1)      Introduction
2                       2)      Discussing layers and properties of layers.
                   3)      Discussing tools one by one with proper detail. 
                                   ·         Move tool with properties
                       ·         Rectangular Marquee tool with properties
                       ·         Selection tools(Lasso tool and other)
                       ·         Magic wand and Quick selection tool
                       ·         Crop section tools
                       ·          Eyedropper section tools
                       ·         Spot handling section tools
                       ·         Brush tools
                       ·         Clone stamp and pattern tool
                       ·         History and art brush tool
                       ·         Eraser tools section
                       ·         Paint bucket and Gradient tool
                       ·         Blur tool section
                       ·         Dodge tool section
                       ·         Pen tool section
                       ·         Title tool section
                       ·         Path selection tool
                       ·         Shape tools
                       ·         Hand tool section
                       ·         Zoom tool  
1                  4)      Discussing menu one by one.
                  ·         File menu
                  ·         Edit menu
                  ·         Image menu
                  ·         Layer menu
                  ·         Type menu
                  ·         Select menu
                  ·         Filter menu (Most important)
                  ·         View menu
                  ·         Window menu
                  ·         Help menu  (How to use help section)

Section 2(Projects)

     1)      Text designing
     2)      Changing background of image
     3)      Changing eye colour.
     4)      Making hairs and beard.
     5)      Changing cloth colour
     6)      Making banners
     7)      Dress changing 

    Section 3(Tips)

1)      Tips and tricks about Photoshop

I hope you like this course. So please write comments and gives us your feedback. If you have any question then please writes your question in the comment box and we will give the answer of your question within a very short time. Share our videos to your friends because our aim is to provide knowledge to everyone.

Video Classes


After watching this course please give us your feedbacks.

Tuesday, 1 December 2015

Earn money with adf.ly in urdu(video)

Adf.ly is a most famous and easy way to earn money without any investment.This is an easy and simple method to get money online in Pakistan or anywhere in the world. Its a really good way. If you don't have any education or any work experience. You can do that without any need of investment. I'm also work with adf.ly. Many online site give their ads to adf.ly and then adf.ly pay you money for visiting ads. So this is not complicated method. That's why everyone can do that.



For Register with spacial offers

Urdu method






Get paid to share your links!

Send us feedback or contact us if you have any problem.


Tuesday, 20 October 2015

Complete MS Office 2007 course in Urdu videos

MS Office 2007 by azeemIT.blogspot.com

Course Outline

In this course we will learn about MS Office 2007. I divide this course info 5 steps. This is a complete course. Everything described with Urdu video. First of all we provide you a MS word course then MS Excel, MS Power Point, MS Access and MS Publisher. The list of videos are exist on end of this page. Just click on the video link and watch online or you can also download by click the download button.

List of MS Office course videos

Click on the 1st video link and get start your course.

Read some important information about MS Office 2007

Do I need to switch from MS Office 2003 to 2007


The Information Technology Department has begun the deployment of Microsoft Office 2007. Most of the classrooms, labs and public computers have already been upgraded to Office 2007. We will be continuing this migration through the Spring and Summer, with a projected completion date of September 2009.

The significant changes in Office 2007 can affect all Office users due to compatibility issues between Office 2007 and earlier versions. In addition, the user interface in Office 2007 is substantially different from that of Office 2003. When you do make the change, you will want to allow yourself extra time to plan and prepare for migrating your files and sign -up for some training. Expect a learning curve with Office 2007, particularly if you want to remain productive with current projects.

Learning the new interface

In Office 2007, familiar toolbars and menus are replaced with a whole new look and feel. Program features are organized by what you want to do and allow you to preview editing and formatting changes before you decide to use them. Learning to use the Microsoft Office Button, Ribbon and Contextual Tabs may take some practice. Fortunately, online resources and instructor-led training are available.