In this post we are going to write a simple C program to print alphabets, both Capital letter alphabets and Small letter alphabets. It’s not
Category: Programming
In this post we are going to write a C program to calculate the “Area of square”. Formula for calculating “Area of square” is, Area
Hello students and self-learners, here is another interesting program for you to learn the basics of C programming. In this post, you are going to
So in this post, we are going to see how we can do the mathematical operations such as Addition, Subtraction, Multiplication & Division in C
Yes, Let’s write a C program to swap values. This post is useful for school students and those who are learning C programming themselves. Swapping
In this post, we are going to see how to write a small piece of PHP snippet to remove all duplicate characters in a string.
In this post, we are going to write a C program to generate Multiplication table. Let’s see how to write it with a simple snippet
In this post we are going to write a PHP program to check Strong number. Before that if you don’t know what is a Strong
Hello students and dear programmers. Today’s script we are going to see how to generate a multiplication table using PHP script.
1 2 3 4 5 6 7 8 9 10 |
<?php $table_no = 7; $upto = 10; for($i=1; $i<=$upto; ++$i){ echo "$table_no * $i = ".$table_no * $i ."<br />"; } ?> |
The above script
In this post we are going to see a very basic PHP script which might be useful for beginners who wants to learn PHP language.