jituTechnology

jituTechnology

Latest Posts

Write a program to read the temperature in Centigrade and convert it to farenhite equivalent

/*A program to read the temperature in Centigrade and convert it to Farenhite eqiuvalent Programmed by: Name: Jitendra Kumar Yadav Roll: 16 Date: 8 Jan 2011 */ #include <stdio.h> #include <conio.h> void main() { float C,F; printf(“Enter the temperature in Centigrade:”); scanf(“%f”,&C); F=1.8*C+32; printf(“The temperature in Farenhite is %f”,F); getch(); }

read more

Write a program to read the radius of a sphere and compute its surface area and the volume

/*A program to read the radius of a sphere and compute its surface area and the volume programmed by: Name: Jitendra Kumar Yadav Roll No: 16 date: 7 Jan 2011 */ #include <stdio.h> #include <conio.h> #include <math.h> void main() { float r,SA,V; printf(“Enter the radius of a sphere: “); scanf(“%f”,&r); SA=(4*(22*1.0)/7*pow(r,2)); V=((4*1.0)/3*(22*1.0)/7*pow(r,3)); printf(“The surface area […]

read more

Write a program to read the radius of a circle and compute its Area and Circumference

[showmyads]/* A program to read the radius of a circle and compute its area and circumference programmed by: Name: Jitendra Kumar Yadav Roll no: 16 Date: 07 jan 2011 */ #include <stdio.h> #include <conio.h> #include <math.h> // to apply the power rule of mathematic void main() { float A,C,r;//Area may be apter decimal because radius […]

read more

Write a program to read the Principle,Time,and Rate nd calculate the Interest and Total Amount

/*A program to read the Principle. Time, and Rate and calculate the Interest and total Amount. Programmed by: Name: Jitendra Kumar Yadav Roll: 16 Date: 8 Jan 2011 */ #include <stdio.h> #include <conio.h> void main() { float P,T,R,I,A; printf(“Enter the principle(P):”); scanf(“%f”,&P); printf(“Enter the Time(T):”); scanf(“%f”,&T); printf(“Enter the Rate(R):”); scanf(“%f”,&R); I=(P*T*R)/100; A=P+I; printf(“The Interest is […]

read more

write a program to illustrate modulus operator in which second is given as an input and the program converts it to hours, minutes and seconds

/*A program to illustratet the modulus operator in which second is given as an input and the program converts it to houurs,minutes and seconds. programmed by: Name: Jitendra Kumar Yadav Roll: 16 Date: 11 jan 20119*/ #include <stdio.h> #include <conio.h> void main() { int hours,minutes,seconds,z; printf(“Enter the time in seconds: “); scanf(“%d”,&seconds); hours=seconds/(60*60); z=seconds%(60*60);//modulus operator […]

read more


Connect with Me

GPO 8973 NPC 541; Kathmandu Nepal
Phone: +977 9851236800

Calendar

April 2026
S M T W T F S
 1234
567891011
12131415161718
19202122232425
2627282930