Wednesday, 30 November 2016

C PROGRAM TO CREATE DIAMOND PATTERN

OK GUYZZ HERE IS THE C PROGRAM TO PRINT DIAMOND PATTERN IN C:

#include<stdio.h>
#include<conio.h>
void main()
{
 int i,j,k,n,no=0,s=2;
 clrscr();
 printf(" enter thee number of rows\n");
 scanf("%d",&n);
 no=n;
 for(i=1;i<=n;i++)
 {
  for(j=1;j<=no;j++)
  {
   printf(" ");
   }
   no--;
   for(k=1;k<=i;k++)
   {
    printf("%d ",i);
    }
    printf("\n");
    }
     for(i=n-1;i>=1;i--)
     {

      for(j=1;j<=s;j++)
      {
       printf(" ");
       }
s++;
for(k=i;k>=1;k--)
{
printf("%d ",i);
}
printf("\n");
}
    getch();

    }



Friday, 18 November 2016

OK GUYZ HERE IS THE PHOTO OF THE WINDOWS 2000 AND WINDOWS 2003 ALL EDITION REQUIREMENTS ENJOY:-

                

                   

Wednesday, 16 November 2016

OK GUYZZ HERE IS THE HTML TABLE PROGRAMM WHICH OUR SIR GAVED A TASK TODAY HERE IS THE SOURCE CODE:

<html>
<head><u><b><font color="green"><center>TABLE</u></b></font></center></head>
<style>
th,td,table { border:2px solid black
}
</style>
<center>
<body>
<table>
<tr>
<td>sr no</td>
<td colspan="2">sub2</td>
<td>sub3</td>
<td colspan="3">total</td>
</tr>
<tr>
<td>2</td>
<td colspan="3">25</td>
<td colspan="3">20</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">24</td>
<td>23</td>
<td colspan="3"><center>29</td></center>
</tr>
<tr>
<td>4</td>
<td colspan="3">27</td>
<td colspan="3">35</td>
</tr>
</center>
</body>
</table>

</html>

output of this programm will be:



Tuesday, 15 November 2016

GUYZ YOU CAN ALSO CONTACT ME ON WHATSAPP

MY NUMBER IS= 7405899105


GUYZ  CONTACT ON MY G-MAIL ID 

JUZER1142@GMAIL.COM 

OK GUYZ YOU HAVE TO FOLLOW THESE STEPS TO COMMENT HERE

STEP1   OPEN YOUR BROWSER 

STEP 2   IN  THE FIRST TAB SIGN IN INTO YOUR MAIL ID AND LET IT REMAIN OPENED IN THE CURRENT TAB

STEP3   OPEN NEW TAB AND THEN OPEN MY BLOG

STEP 4   GO TO COMMENT SECTION THEIR IT WILL BE WRITTEN NO COMMENT CLICK ON THAT

STEP 5  AFTER THAT POST A COMMENT BOX WILL APPEAR THERE YOU HAVE TO WRITE YOUR MAIL ID 

STEP 6  AFTER THAT THERE WILL BE A COMMENT AS BOX THERE WILL BE YOUR GOOGLE ID NAME LISTED CLICK ON THAT AND THEN YOU CAN PUBLISH COMMENT OK FOLLOW THE STEPS WRITTEN HERE

Monday, 7 November 2016

new html program forming a form

hey guyzz posting a new program of making a form in html..

<html>
<head>
<title>text box</title>
<body background="any photos extension can be choosen here like .jpg,.php.png.gifetc."height="500" width="2000"align="center">
<center>
<form>
<table>
<table border="2">
<tr>
<th colspan="2">registration</th>
</tr>
<tr>
<td>First name</td>
<td><input type="text"name=First_name"/>
</tr>
<tr>`
<td>Last name</td>
<td><input type="text" name=Last_name"/>
</tr>
<tr>
<td>Address</td>
<td><input type="text"name=Address"/>
</tr>
<tr>
<td>city</td>
<td><input type="text"name=city"/>
</tr>
<tr>
<td>Pin code</td>
<td><input type="text" name=Pin code"/>
</tr>
<tr>
<td>Mobile no.</td>
<td><input type="text"name=Mobile no."/>
</tr>
</table>
</center>
</form>
</body>
</head>
</html>