A program is
a sequence of instructions that specifies how to perform a computation. The computation might be something mathematical, such as solving a system of
equations or finding the roots of a polynomial, but it can also be a symbolic
computation, such as searching and replacing text in a document or (strangely
enough) compiling a...
Let's start your programming....
Home » Archives for August 2013
Aug 31, 2013
Aug 30, 2013
How to create a Batch Program
Unknown | 3:42 PM | Batch Program 1 Comment so far
Batch file programming is the
native programming offered by the Microsoft Windows Operating
System. The batch file is created
using any text editors like notepad, WordPad, WinWord or so on, which comprises
of a sequence of built-in commands used to perform some often done tasks like
deleting a series of files of the same type or of different...
Aug 29, 2013
What is C/C++ and why use C/C++?
Unknown | 4:44 PM | C/C++ Be the first to comment!
What is C/C++:
C++ is a modern,
high-level programming language leveraged by millions of programmers around the
world. It’s one of the most popular languages for writing computer applications.
In the early days of computing,
programs were written in machine language, which consists of the
primitive instructions that can be executed...
Aug 28, 2013
Creating Python programs
Unknown | 2:08 PM | Python Be the first to comment!
Welcome to Python!
This post will show you how to
start writing programs.
Python programs are nothing more
than text files, and they may be edited with a standard text editor Program
(Sometimes, Python programs are distributed in compiled form. We won't have to
worry about that for quite a while.). What text
editor you use will probably...
Subscribe to:
Posts (Atom)
Search
Popular Posts
-
The for loop is the most commonly used statement in C++. This loop consists of three expressions. The first expression is used to initial...
-
C omparison and L ogical O perators For program flow, the comparison as well as the logical operators is required. The comparison and lo...
-
Create a simple game with C program. #include <stdlib.h> #include <stdio.h> #include <conio2.h> #include <s...
-
Do you know what is a prime number? A natural number greater than 1 which has only two divisors 1 and it is called a prime number. For exa...
-
Hi, Today I am going to give you a simple C++ program. This following program structures display the name of the week, depending upo...
Categories
- Batch Program (1)
- C/C++ (11)
- Game Codes (1)
- Python (1)