Command Line Interpreter...

Command Line Interpreter...
Command Line Interpreter Definition: A command line interpreter is any program that allows the entering ofcommands and then executes those commands to the operating system. In most Windows operating systems, the primary command line interpreter...

How to Open a Terminal Session in Windows 7

How to Open a Terminal Session in Windows 7
How to Open a Terminal Session in Windows The Command Prompt represents Windows 7's equivalent to Mac's Terminal. This text-only application abandons Windows' familiar graphical user interface and allows technicians to issue textual commands. While some users dislike...

What is A header file ???

What is A header file ???
                          A header file is a file with extension .h which contains C function declarations and macro definitions...

why and when we use #include?

why and when we use #include?
#include is used to add code into your file during compiling.So, for example, in order to use a function you muse first declare it (tell the compiler that it exists and what arguments it takes). There are a ton of libraries out there with pre-compiled code. In order...