Posts

Add Two Numbers

Drive: Add.c C O D E

Guess The Number (Game)

Click on   Guess The Number By Mohit   to download it's source code:) C O D E

Unit Converter

Image
I've uploaded it as a file you can look at it's source code by clicking on the link 👉   Unit Converter  :) Process :- Click on the Unit Converter  >>> Choose your Gmail account >>> Copy source code >>> Paste this code to your IDE </> Analyse the code and enjoy the output 👨‍💻 ~Mohit C O D E Copy Code

Percentage of Six Subjects

Percentage Calculator of Six Subjects by Mohit Purohit C O D E Copy Code /* Creator - Mohit Purohit Date - 07 Jan. 2022 Time - 11:31 P.M. */ #include<stdio.h> #include<conio.h> void main() {        clrscr ();     int Hindi, English, Mathematics, Science, Sanskrit, SocialStudies, Total=480 ;     float sum, per;     printf("Enter the marks of Hindi : ");     scanf("%d",&Hindi);     printf("Enter the marks of English : ");     scanf("%d",&English);     printf("Enter the marks of Mathematics : ");     scanf("%d",& Mathematics);     printf("Enter the marks of Science : ");   ...

Calculator

Calculator by Mohit Purohit C O D E Copy Code /* Creator - Mohit Purohit Date - 21 Jan. 2022 Time - 8:52 P.M. */ # include <stdio.h> # include <conio.h> //#include<string.h> int main () { clrscr(); /* 'num1' and 'num2' are 'float' means decimal value. 'op' means operator and 'op' is a 'char' means character. Then result is also a 'float' value. */ float num1; float num2; char op; float result; const float p= 3.14159265 ; // User enter the first number means 'num1'. printf ( "Enter the first number : " ); scanf ( "%f" ,&num1); // User enter the operator means 'op'. ...

Multiplication Table

Multiplication Table by Mohit Purohit C O D E Copy Code /* Creator - Mohit Purohit Date - 15 Feb. 2022 Time - 8:00 P.M. */ # include <stdio.h> # include <conio.h> int main () { clrscr(); // Now I declare a variable and this name is 'num'. 'num' means number. // 'num' is a 'int'. 'num' means integer value. int num, restart = 0 ; // Here I use do while loop for restart this program. do { // User enter a number printf ( "Enter the number whose multiplication table you want to get.\n\n" ); scanf ( "%d" , &num); //Presenting Multiplication Table printf ( "\nMultiplication Table of %d is -\n\n" , num); // I am using two methods for...