jituTechnology

jituTechnology

Write the program to print following patterns

/*program to print numbers in the following  using loops. Programmed by : kiran shrestha Roll no. : 10121 Programmed on : 7th feb, 2011*/ #include <stdio.h> #include <conio.h> void main () {      int i,j;         for (i=1;i<=5;i++)                 {                      for (j=1;j<=i;j++)                            {                                 if(j%i!=0)                                      printf (“%d\t”,0); […]

read more

Write a program to print the numbers in the following format using loops

/*program to print numbers in the following format using loops. Programmed by : kiran shrestha Roll no. : 10121 Programmed on : 7th feb, 2011*/ #include <stdio.h> #include <conio.h> main () {      int i,j;    int a=1;    for (i=1;i<=5;i++)      {            for (j=a;j<=a+2;j++)                 {                      printf (“%d\t”,j); […]

read more

Write a program to calculate the sum of cosine series

Write a program to calculate the sum of cosine series Programmed by : kiran shrestha roll no. : 10121 Programmed on : 6th feb,2011*/ #include <stdio.h> #include <conio.h> #include <math.h> void main () {   int i,j,n;   float sum=0,fact=1,x;   printf (“enter terms = “);   scanf (“%d”,&n);   printf (“enter the angle of […]

read more

The Sin of X can be calculated approximately by using the first n terms of the infinite series

The Sin of X can be calculated approximately by using the first n terms of the infinite series( X is expressed in radians, /*program to find sine of x can be calculated approximately by using the firstn terms of the infinite series. Programmed by : kiran shrestha roll no. : 10121 Programmed on : 6th […]

read more

Cracking Windows XP Login Password

First of all access to the computer on which you want to crack its passwords. After then, Go to Start menu Click on Run Now Type ‘control userpasswords2’ After then a new popup screen will appear and following that popup screen you will reach to the user accounts properties, where you will be able to […]

read more