This Blog is for New Computer Prgrammers

Tuesday, 13 December 2016

Output from C Language

Output from C - Language. It is very important to get output from any computer language, there is a built in function in c language printf that is used to get output from c language. This function is defined in stdio.h header file. Its syntax is as follows printf("Formatted...
Share:

Saturday, 10 December 2016

Data Types in C - Language

What is Data Type? There are some predefined keywords in C - Language that defines what kind of data would be stored in a variable, what operations can be applied on this data, how much memory will be occupied, and what will be the value range +ve and -ve to store in variable. Common...
Share:

Friday, 9 December 2016

Variables in C - Language

Variables Variables are named memory locations which are used to store program's input data and its computational Results during program execution. The Variables are created in the RAM, therefore the data stored in variables is temporarily saved. Every variables has following...
Share:

Tuesday, 6 December 2016

C - Language Terminology

There are some specific Terms every one have to memorize who want to learn C Language KeyWords In C Language some words are predefined means have special meanings for C - Language and Compiler of C Language recognize these words and behaves accordingly. There are 32...
Share:

Monday, 5 December 2016

Common Programming Errors

Common Programming Errors The Programmer may come across errors while writing a computer program. In Programming languages these errors are called "bugs", and the mechanism to find and fix these errors is called "debugging", Some errors are caught by the compiler and some...
Share:

Saturday, 3 December 2016

Hello World in C - Language

So dear ones Time to jump into the wonderland of C-Language, Going to describe you the very First Program in C - Language, that is must to enter otherwise there is no program in C - Language at all. #include<stdio.h> #include<conio.h> void main(void) { clrscr(); pritnf("Hello...
Share:

C - Development Environment

C - Development Environment There are some basic Steps you have to keep in mind while working in C - Language Environment,  Remember one more thing i am using TURBOC Compiler for my this blog. Writing your Programs. First of all you have to write your program, for...
Share:

Total Pageviews