In this C programming tutorial I take you through how you can generate shapes/polygons like squares, rectangles and triangles using the C programming...Read More
Posts Tagged "Programming"
-
-
A C Program That Calculates The Range Of Numbers
Wednesday, 6th June 2012In this tutorial I show how you can write a c program that calculates/finds the range of given numbers. I also describe what range is and the steps that are taken when finding the range of...Read More -
Compiling And Executing A C Program In Linux
Sunday, 27th May 2012In this tutorial I guide you through how you can compile and execute c programs on Linux. The gcc command is used at the terminal to compile the c programs in ...Read More -
A C Program That Calculates The Average Of Numbers
Friday, 18th May 2012In this C Programming tutorial I show you how to calculate the average of numbers. First I explain what average (mean) is, then give the formula for calculating the mean, followed by an example where mean is calculated and finally a c program that calculates the average of numbers is...Read More -
Uses Of Constructors In Object Oriented Programming
Tuesday, 28th February 2012Learn the uses of constructors in Object Oriented Programming(OOP). The question, Why one should create a constructor explicitly yet programming languages allow the programmers not to create a constructor for a class at all is answered in this good programming practice...Read More -
Validating User Input Data
Tuesday, 17th January 2012Validating the data sent from the website is vital to ensure that it conforms to the set standards. For example an email must be of a particular format and it must always conform to it, so in case on your website there is a field where the user has to provide an email it should be validated to...Read More -
Creating A Folder Using PHP
Thursday, 22nd December 2011Learn how to create folders using PHP at the server. The mkdir PHP functions is used when creating folders. The mkdir functions takes in 4 arguments as per PHP 5.0.0 onwards, the first argument is the directory/folder path and its a required...Read More -
Arithmetic Operators In C
Monday, 14th November 2011Arithmetic operators in C programming. Arithmetic operators are those symbols that are use to carry out mathematical computations. Arithmetic operators include the addition operator (+), Subtraction operator(-), Multiplication operator (*), division operator (/) and modulus operator (%). Get to...Read MoreCategory: C Programming • Tags: Programming -
Suppressing Error And Warning Messages In PHP
Thursday, 3rd November 2011Learn how to suppress error and warning messages in PHP. Suppression of error and warning messages is done by prefixing the PHP error-control operator ("@" symbol) on a...Read More -
PHP Arrays
Tuesday, 1st November 2011Learn how to work with PHP arrays. PHP has three kinds of arrays i.e. numeric arrays, associative arrays and multidimensional arrays. The first elements in a PHP array has 0 as its index by...Read More
