Monday 6 February 2017

Pascal's Triangle C Language

Pascal's Triangle C Language Code

Pascal's triangle is a triangular array of the binomial coefficients. in which each row , second character and one before of last digit is sum two digit left to right from previous row.

Saturday 4 February 2017

Hollow Triangle Program C Language

Write a program which display a hollow triangle shape using asterisk character with while and for separately?

Hollow Triangle Program C Language Code

/*   ################################
     Girfa Student Help
     Hollow Triangle
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Friday 3 February 2017

MySQL Table Record Fetch

Fetch all record from MYSQL Table Using PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Girfa : Student Help :: MySQL Table Record Fetch</title>
</head>

<body>

<?php
$username = "root";

VB.net Array

Array is a collection of similar data type which occupies continuous location on memory.

Dim ar(4) As Integer
        For i = 0 To 4
            Console.Write("Enter {0} 'st number>> ", i + 1)
            ar(i) = Val(Console.ReadLine())
        Next
        For i = 0 To 4
            Console.Write(" {0},", ar(i))