Introduction
The meaning of x to the power of y is , a variable x is multiply for y time. Lets take a simple example a variable x is hold 2 and y hold 5. Now the answer is 2 multiply for 5 times such as..
z=2*2*2*2*2;
z=32
...
Friday, January 8, 2016
Structure of a C program
The structure of a C program is nothing but the way of framing the group of statements while writing a C program. We put the general structure of a C program first as shown below:
[preprocessor directives]
[global declaratio...
Principles of Programming in C language
Introduction to Programming
Remember your last visit to the super market. You might have purchased many items. What did you do after picking all the items and putting them into the carriage? Probably you met with the billing cl...
Wednesday, May 6, 2015
Demerits of bottom-up technique in c language
In my previous article i explained about:
Features of top-down technique
Merits of bottom-up technique
Now, today i will learn about Bottom up technique demerits:
The application developed using this technique cannot be te...
Wednesday, April 8, 2015
Unstructured technique of programming in C language
Definition : An approach of designing a program simply using series of statements is called unstructured programming.
In such programming technique every task is solved using series of simple statements only. Branching and repe...
Monday, March 9, 2015
Tips for program designing in C language
Now, let us see "What are the tips to design a good program?"
Although the program design involves several stages, the following are the few important tips to design a good program:
I Tip: Make a program readable. It is a combin...