SlideShare uma empresa Scribd logo
1 de 25
Shaheed Benazir Bhutto University Nawabshah
Name : Shamshad Jamali
Roll No : 22BS( IT ) 40
Subject : Programming .
. Fundamental
Submit To : Sir Umair Sheikh
Q:1 Ramesh’s basic salary is input through the keyboard. His dearness
allowance is 40% of basic salary, and house rent allowance is 20% of
basic salary. Write a program to calculate his gross salary.
Input:-
#include <stdio.h>
int main()
{
int salary=20000;
salary=20000;
int der=salary*0.4;
int rent=salary*0.2;
int total=salary+der+rent;
printf("Basic Salary Of Ramesh:t%d",salary);
printf("nDearness Allowance:t%d",der);
printf("nRentAllowance:tt%d",rent);
printf("nGross Salary:tt%d",total);
}
OutPut:-
Q:2 The distance between two Cities (in km) is input through the
keyboard. Write a program to convert and print this distance in
meters, inches and centimers.
Input:-
#include<stdio.h>
int main ()
{
float km,m,cm,f,in;
printf("Enter Ddistancebetween two cities:");
scanf("%f" ,&km);
m=km * 1000;
cm=km * 1000 *100;
f=km *4.425;
in=km *14;
printf("Thedistance in kilometers : %fn" ,km);
printf("Thedistance in feet : %fn" ,f);
printf("Thedistance in inches : %fn" ,in);
printf("Thedistance in meters : %fn" ,m);
printf("Thedistance in centimeters: %fn" ,cm);
return (0);
}
Output:-
Q:3 If the marks obtained by a student in five different Subjects are
input through the keyboard. Find out the aggregate marks and
percentage marks obtained by the student. Assume that the
maximum marks that can be obtained by a student in each subject is
100.
Input:-
#include<stdio.h>
#include<conio.h>
int main()
{
int Math, Science, English, Sindhi, Urdu,AggregrateMarks;
float percentageMarks;
printf("Enter the Marks of Math Subject= ");
scanf("%d",&Math);
printf("nEnter the Marks of Science Subject= ");
scanf("%d",&Science);
printf("nEnter the Marks of English Subject= ");
scanf("%d",&English);
printf("nEnter the Marks of Sindhi Subject = ");
scanf("%d",&Sindhi);
printf("nEnter the Marks of Urdu Subject= ");
scanf("%d",&Urdu);
/* Calculate AggregateMarks */
AggregrateMarks =Math + Science + English + Sindhi+ Urdu;
printf("nnnTheAggregate Marks of Five subjects are:%d",AggregrateMarks);
/* Calculate PercentageMarks */
percentageMarks = AggregrateMarks/5;
printf("nnnThePercentage Marks of a Student is : %f%",percentageMarks);
getch ();
}
Output:-
Q:4 Temperature of a city in Fahrenheit degrees is input through the
keyboard. Write a program to convert this temperature into
centigrade degrees.
Input:-
#include<stdio.h>
int main()
{
float f,c;
printf("Enter the temperature in fahrenheitt");
scanf("%f",&f);
c=(f-32)*5/9;
printf("temperaturein a centigrade degree:%2f",c);
}
Output:-
Q:5 The length & breadth of a rectangle and radius of a circle are
input through the keyboard. Write a program to calculate the area &
perimeter of the rectangle, and the area & circumference of the circle.
Input:-
#include<stdio.h>
int main()
{
float L, B, R, AR, PR, AC, CC;
printf("Enter the Length of a rectangle(L) = ");
scanf("%f",&L);
printf("nEnter the Breadth of a rectangle(B) = ");
scanf("%f",&B);
/*Calculate the Area of Rectangle*/
AR = L * B;
printf("nnTheArea of a Rectangle are = %f",AR);
/*Calculate the Perimeter of Rectangle*/
PR = 2 *(L + B);
printf("nnThePerimeter of a Rectangle are = %f",PR);
printf("nnnEnter the Radious of a Circle(R) = ");
scanf("%f",&R);
/*Calculate the Area of Circle*/
AC = 3.14 * R * R;
printf("nnTheArea of a Circle are = %f",AC);
/*Calculate the Circumferenceof Circle*/
CC = 2 * 3.14 * R;
printf("nnTheCircumferenceof a Circle are = %f",CC);
return 0;
}
Output:-
Q:6 Two numbers ae input through the keyboard into two locations C
and D. Write a program to interchange the contents of C and D.
Input:-
#include<stdio.h>
int main()
{
int C, D, f;
printf("Enter the value of C = ");
scanf("%d",&C);
printf("nEnter the value of D = ");
scanf("%d",&D);
/*Condition of InterchangeC & D value*/
f = C;
C = D;
D = f;
printf("nnAfter InterchangetheValue of C is : %d",C);
printf("nnAfter InterchangetheValue of D is : %d",D);
return 0;
}
Output:-
Q:7 If a five-digit number is input through the keyboard. Write a
program to calculate the sum of its digits.
Input:-
#include<stdio.h>
int main()
{
int num, a, n;
int sum = 0;
printf("Enter a FIVEdigit number: ");
scanf("%d",&num);
/*1st digit*/
a = n % 10;
sum= sum+ a;
/*2nd digit*/
a = n % 10;
n = n / 10;
sum= sum+ a;
/*3rd digit*/
a = n % 10;
n = n / 10;
sum= sum+ a;
/*4th digit*/
a = n % 10;
n = n / 10;
sum= sum+ a;
/*last digit extracted as reminder*/
a = num% 10;
n = num/10; /*remaining digits*/
sum= sum+ a; /*sumupdated with adding of extracted digit*/
a = n % 10;
sum= sum+ a;
printf("nnnTheSumof FIVEDigit Number %d is = %d",num,sum);
return 0;
}
Output:-
Q:8 If a five-digit number is input through the keyboard. Write a
program to reverse the number.
Input:-
#include<stdio.h>
int main()
{
int n, a, b;
long int revnum=0;
printf("Enter the FIVEdigit number = ");
scanf("%d",&n);
/*1st digit*/
a = n % 10;
n = n / 10;
revnum= revnum+ a * 10000L;
/*reversenumber updated with value of extracted digit*/
/*2nd digit*/
a = n % 10;
n = n / 10;
revnum= revnum+ a * 1000;
/*3rd digit*/
a = n % 10;
n = n / 10;
revnum= revnum+ a * 100;
/*4th digit*/
a = n % 10;
n = n / 10;
revnum= revnum+ a * 10;
/*last digit*/
a = n % 10;
revnum= revnum+ a;
printf("nTheReversenumber = %ld",revnum);
return 0;
}
Output:-
Q:9 If a four-digit number is input through the keyboard. Write a
program to obtain the sum of the first and last digit of this number.
Output:-
#include<stdio.h>
int main()
{
int n, a, sum=0;
printf("Enter a Four Digit Number = ");
scanf("%d",&n);
/*1st digit*/
a = n / 1000;
sum= sum+ a;
/*Last digit*/
a = n % 10;
sum= sum+ a;
printf("nnSumof Firstand Lastdigit of %d = %d",n,sum);
return 0;
}
Output:-
Q:10 In a town, the percentage of men is 52. The percentage of total
literacy is 48. If total percentage of literate men is 35 of the total
population. Write a program to find the total number of illiterate men
and women if the population of the town is 80,000.
Input:-
#include<stdio.h>
int main()
{
long int totpop = 80000;
long int totmen, totlit, litmen, ilitmen, totwomen, totlitwomen;
long int ilitwomen;
totmen = (52/100) *totpop;
printf("nTotalnumber of Mens in the Town is :tt %ld",&totmen);
totlit = (48/100) *totpop;
printf("nTotalnumber of Literate People in the Town is : %ld",&totlit);
litmen = (35/100) *totpop;
printf("nTotalnumber of Literate Mens in the Town is :t %ld",&litmen);
totlitwomen = totlit - litmen;
totwomen = totpop - totmen;
printf("nTotalnumber of Womens in the Town is :tt %ld",&totwomen);
ilitmen = totmen - litmen;
printf("nTotalnumber of Illiterate Mens in the Town is : %ld",&ilitmen);
ilitwomen = totwomen - totlitwomen;
printf("nTotalnumber of Illiterate Womens in the Town is :%ld",ilitwomen);
return 0;
}
Output:-
Q:11 A cashier has currency notes of denominations 10, 50 and 100. If
the amount to be withdrawn is input through the keyboard in
hundreds, Find the total number of currency notes of each
denomination the cashier will have to give to the withdrawer.
Input:-
#include<stdio.h>
int main()
{
int amount, A, B, C;
printf("Enter the Amount to be Withdrawn : ");
scanf("%d",&amount);
A = amount / 100;
printf("nNumber of Hundred Notes = %d",&A);
amount = amount % 100;
B = amount / 50;
printf("nNumber of Fifty Notes = %d",&B);
amount = amount % 50;
C = amount/ 10;
printf("nNumber of Ten Notes = %d",&C);
return 0;
}
Output:-
Q:12 If the total selling price of 15 items and the total profit earned on
them is input through the keyboard, write a program to find the cost
price of one item.
Input:-
#include<stdio.h>
int main()
{
float sp, cp, profit;
printf("Enterthe total Selling Price = ");
scanf("%f",&sp);
printf("nEnterthe total Profit = ");
scanf("%f",&profit);
cp = sp - profit;
/*Cost price per item*/
cp = cp / 15;
printf("nnnCost Price Per Item are = %f",cp);
return 0;
}
Output:-
Q:13 If a five-digit number is input through the keyboard, write a
program to print a new number by adding one to each of its digits. For
example if the number that is input is 12391 then the output should
be displayed as 23402.
Input:-
#include<stdio.h>
int main()
{
int num, a, n;
int newnum=0;
printf("Enter a FIVEDigit number = ");
scanf("%d",&num);
/*1st digit*/
a = num/ 10000 +1;
n = num % 10000;
newnum= newnum+ a * 10000L;
/*2nd digit*/
a = n / 1000 + 1;
n = n % 1000;
newnum= newnum+ a * 1000;
/*3rd digit*/
a = n / 100 + 1;
n = n % 100;
newnum= newnum+ a * 100;
/*4th digit*/
a = n / 10 + 1;
n = n % 10;
newnum= newnum+ a * 10;
/*5th digit*/
a = n + 1;
newnum= newnum+ a;
printf("nnnOld Number = %d, New Number = %ld",num,newnum);
return 0;
}
Output:-
Chapter 1 Programming Fundamentals Assignment.docx

Mais conteúdo relacionado

Mais procurados

Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptxAkshayAggarwal79
 
04. Console Input Output
04. Console Input Output 04. Console Input Output
04. Console Input Output Intro C# Book
 
Lecture 2 C++ | Variable Scope, Operators in c++
Lecture 2 C++ | Variable Scope, Operators in c++Lecture 2 C++ | Variable Scope, Operators in c++
Lecture 2 C++ | Variable Scope, Operators in c++Himanshu Kaushik
 
Python Basics
Python BasicsPython Basics
Python BasicsPooja B S
 
Programming Fundamentals Functions in C and types
Programming Fundamentals  Functions in C  and typesProgramming Fundamentals  Functions in C  and types
Programming Fundamentals Functions in C and typesimtiazalijoono
 
Variables in python
Variables in pythonVariables in python
Variables in pythonJaya Kumari
 
C++ classes tutorials
C++ classes tutorialsC++ classes tutorials
C++ classes tutorialsMayank Jain
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c languageTanmay Modi
 
Looping Statement And Flow Chart
 Looping Statement And Flow Chart Looping Statement And Flow Chart
Looping Statement And Flow ChartRahul Sahu
 
If else statement in c++
If else statement in c++If else statement in c++
If else statement in c++Bishal Sharma
 
C programming interview questions
C programming interview questionsC programming interview questions
C programming interview questionsadarshynl
 

Mais procurados (20)

Python variables and data types.pptx
Python variables and data types.pptxPython variables and data types.pptx
Python variables and data types.pptx
 
04. Console Input Output
04. Console Input Output 04. Console Input Output
04. Console Input Output
 
Functions in c++
Functions in c++Functions in c++
Functions in c++
 
Lecture 2 C++ | Variable Scope, Operators in c++
Lecture 2 C++ | Variable Scope, Operators in c++Lecture 2 C++ | Variable Scope, Operators in c++
Lecture 2 C++ | Variable Scope, Operators in c++
 
Control statements
Control statementsControl statements
Control statements
 
Python Basics
Python BasicsPython Basics
Python Basics
 
Programming Fundamentals Functions in C and types
Programming Fundamentals  Functions in C  and typesProgramming Fundamentals  Functions in C  and types
Programming Fundamentals Functions in C and types
 
Variables in python
Variables in pythonVariables in python
Variables in python
 
Modular programming
Modular programmingModular programming
Modular programming
 
C++ classes tutorials
C++ classes tutorialsC++ classes tutorials
C++ classes tutorials
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c language
 
Program control statements in c#
Program control statements in c#Program control statements in c#
Program control statements in c#
 
C by balaguruswami - e.balagurusamy
C   by balaguruswami - e.balagurusamyC   by balaguruswami - e.balagurusamy
C by balaguruswami - e.balagurusamy
 
Pointers in c++
Pointers in c++Pointers in c++
Pointers in c++
 
07. Virtual Functions
07. Virtual Functions07. Virtual Functions
07. Virtual Functions
 
C++ programming function
C++ programming functionC++ programming function
C++ programming function
 
Constructors and Destructors
Constructors and DestructorsConstructors and Destructors
Constructors and Destructors
 
Looping Statement And Flow Chart
 Looping Statement And Flow Chart Looping Statement And Flow Chart
Looping Statement And Flow Chart
 
If else statement in c++
If else statement in c++If else statement in c++
If else statement in c++
 
C programming interview questions
C programming interview questionsC programming interview questions
C programming interview questions
 

Semelhante a Chapter 1 Programming Fundamentals Assignment.docx

Best C Programming Solution
Best C Programming SolutionBest C Programming Solution
Best C Programming Solutionyogini sharma
 
Core programming in c
Core programming in cCore programming in c
Core programming in cRahul Pandit
 
B.Com 1year Lab programs
B.Com 1year Lab programsB.Com 1year Lab programs
B.Com 1year Lab programsPrasadu Peddi
 
C Language Programming Introduction Lecture
C Language Programming Introduction LectureC Language Programming Introduction Lecture
C Language Programming Introduction Lecturemyinstalab
 
In C Programming create a program that converts a number from decimal.docx
In C Programming create a program that converts a number from decimal.docxIn C Programming create a program that converts a number from decimal.docx
In C Programming create a program that converts a number from decimal.docxtristans3
 
LAB_MANUAL_cpl_21scheme-2.pdf
LAB_MANUAL_cpl_21scheme-2.pdfLAB_MANUAL_cpl_21scheme-2.pdf
LAB_MANUAL_cpl_21scheme-2.pdfRavinReddy3
 
PCA-2 Programming and Solving 2nd Sem.pdf
PCA-2 Programming and Solving 2nd Sem.pdfPCA-2 Programming and Solving 2nd Sem.pdf
PCA-2 Programming and Solving 2nd Sem.pdfAshutoshprasad27
 
PCA-2 Programming and Solving 2nd Sem.docx
PCA-2 Programming and Solving 2nd Sem.docxPCA-2 Programming and Solving 2nd Sem.docx
PCA-2 Programming and Solving 2nd Sem.docxAshutoshprasad27
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given numberMainak Sasmal
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given numberMainak Sasmal
 
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...DR B.Surendiran .
 
Cs291 assignment solution
Cs291 assignment solutionCs291 assignment solution
Cs291 assignment solutionKuntal Bhowmick
 

Semelhante a Chapter 1 Programming Fundamentals Assignment.docx (20)

Best C Programming Solution
Best C Programming SolutionBest C Programming Solution
Best C Programming Solution
 
Core programming in c
Core programming in cCore programming in c
Core programming in c
 
B.Com 1year Lab programs
B.Com 1year Lab programsB.Com 1year Lab programs
B.Com 1year Lab programs
 
C Language Programming Introduction Lecture
C Language Programming Introduction LectureC Language Programming Introduction Lecture
C Language Programming Introduction Lecture
 
9.C Programming
9.C Programming9.C Programming
9.C Programming
 
C file
C fileC file
C file
 
In C Programming create a program that converts a number from decimal.docx
In C Programming create a program that converts a number from decimal.docxIn C Programming create a program that converts a number from decimal.docx
In C Programming create a program that converts a number from decimal.docx
 
Programming egs
Programming egs Programming egs
Programming egs
 
LAB_MANUAL_cpl_21scheme-2.pdf
LAB_MANUAL_cpl_21scheme-2.pdfLAB_MANUAL_cpl_21scheme-2.pdf
LAB_MANUAL_cpl_21scheme-2.pdf
 
C lab
C labC lab
C lab
 
PCA-2 Programming and Solving 2nd Sem.pdf
PCA-2 Programming and Solving 2nd Sem.pdfPCA-2 Programming and Solving 2nd Sem.pdf
PCA-2 Programming and Solving 2nd Sem.pdf
 
PCA-2 Programming and Solving 2nd Sem.docx
PCA-2 Programming and Solving 2nd Sem.docxPCA-2 Programming and Solving 2nd Sem.docx
PCA-2 Programming and Solving 2nd Sem.docx
 
C programs
C programsC programs
C programs
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given number
 
Practical write a c program to reverse a given number
Practical write a c program to reverse a given numberPractical write a c program to reverse a given number
Practical write a c program to reverse a given number
 
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
 
Cs291 assignment solution
Cs291 assignment solutionCs291 assignment solution
Cs291 assignment solution
 
C lab programs
C lab programsC lab programs
C lab programs
 
C lab programs
C lab programsC lab programs
C lab programs
 
cpract.docx
cpract.docxcpract.docx
cpract.docx
 

Último

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...software pro Development
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfryanfarris8
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 

Último (20)

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 

Chapter 1 Programming Fundamentals Assignment.docx

  • 1. Shaheed Benazir Bhutto University Nawabshah Name : Shamshad Jamali Roll No : 22BS( IT ) 40 Subject : Programming . . Fundamental Submit To : Sir Umair Sheikh
  • 2. Q:1 Ramesh’s basic salary is input through the keyboard. His dearness allowance is 40% of basic salary, and house rent allowance is 20% of basic salary. Write a program to calculate his gross salary. Input:- #include <stdio.h> int main() { int salary=20000; salary=20000; int der=salary*0.4; int rent=salary*0.2; int total=salary+der+rent; printf("Basic Salary Of Ramesh:t%d",salary); printf("nDearness Allowance:t%d",der); printf("nRentAllowance:tt%d",rent); printf("nGross Salary:tt%d",total); }
  • 3. OutPut:- Q:2 The distance between two Cities (in km) is input through the keyboard. Write a program to convert and print this distance in meters, inches and centimers. Input:- #include<stdio.h> int main () { float km,m,cm,f,in; printf("Enter Ddistancebetween two cities:"); scanf("%f" ,&km); m=km * 1000; cm=km * 1000 *100;
  • 4. f=km *4.425; in=km *14; printf("Thedistance in kilometers : %fn" ,km); printf("Thedistance in feet : %fn" ,f); printf("Thedistance in inches : %fn" ,in); printf("Thedistance in meters : %fn" ,m); printf("Thedistance in centimeters: %fn" ,cm); return (0); } Output:-
  • 5. Q:3 If the marks obtained by a student in five different Subjects are input through the keyboard. Find out the aggregate marks and percentage marks obtained by the student. Assume that the maximum marks that can be obtained by a student in each subject is 100. Input:- #include<stdio.h> #include<conio.h> int main() { int Math, Science, English, Sindhi, Urdu,AggregrateMarks; float percentageMarks; printf("Enter the Marks of Math Subject= "); scanf("%d",&Math); printf("nEnter the Marks of Science Subject= "); scanf("%d",&Science); printf("nEnter the Marks of English Subject= "); scanf("%d",&English); printf("nEnter the Marks of Sindhi Subject = "); scanf("%d",&Sindhi); printf("nEnter the Marks of Urdu Subject= ");
  • 6. scanf("%d",&Urdu); /* Calculate AggregateMarks */ AggregrateMarks =Math + Science + English + Sindhi+ Urdu; printf("nnnTheAggregate Marks of Five subjects are:%d",AggregrateMarks); /* Calculate PercentageMarks */ percentageMarks = AggregrateMarks/5; printf("nnnThePercentage Marks of a Student is : %f%",percentageMarks); getch (); } Output:-
  • 7. Q:4 Temperature of a city in Fahrenheit degrees is input through the keyboard. Write a program to convert this temperature into centigrade degrees. Input:- #include<stdio.h> int main() { float f,c; printf("Enter the temperature in fahrenheitt"); scanf("%f",&f); c=(f-32)*5/9; printf("temperaturein a centigrade degree:%2f",c); }
  • 8. Output:- Q:5 The length & breadth of a rectangle and radius of a circle are input through the keyboard. Write a program to calculate the area & perimeter of the rectangle, and the area & circumference of the circle. Input:- #include<stdio.h> int main() { float L, B, R, AR, PR, AC, CC; printf("Enter the Length of a rectangle(L) = "); scanf("%f",&L); printf("nEnter the Breadth of a rectangle(B) = ");
  • 9. scanf("%f",&B); /*Calculate the Area of Rectangle*/ AR = L * B; printf("nnTheArea of a Rectangle are = %f",AR); /*Calculate the Perimeter of Rectangle*/ PR = 2 *(L + B); printf("nnThePerimeter of a Rectangle are = %f",PR); printf("nnnEnter the Radious of a Circle(R) = "); scanf("%f",&R); /*Calculate the Area of Circle*/ AC = 3.14 * R * R; printf("nnTheArea of a Circle are = %f",AC); /*Calculate the Circumferenceof Circle*/ CC = 2 * 3.14 * R; printf("nnTheCircumferenceof a Circle are = %f",CC); return 0; }
  • 10. Output:- Q:6 Two numbers ae input through the keyboard into two locations C and D. Write a program to interchange the contents of C and D. Input:- #include<stdio.h> int main() { int C, D, f; printf("Enter the value of C = ");
  • 11. scanf("%d",&C); printf("nEnter the value of D = "); scanf("%d",&D); /*Condition of InterchangeC & D value*/ f = C; C = D; D = f; printf("nnAfter InterchangetheValue of C is : %d",C); printf("nnAfter InterchangetheValue of D is : %d",D); return 0; } Output:-
  • 12. Q:7 If a five-digit number is input through the keyboard. Write a program to calculate the sum of its digits. Input:- #include<stdio.h> int main() { int num, a, n; int sum = 0; printf("Enter a FIVEdigit number: "); scanf("%d",&num); /*1st digit*/ a = n % 10; sum= sum+ a; /*2nd digit*/ a = n % 10; n = n / 10; sum= sum+ a; /*3rd digit*/ a = n % 10; n = n / 10;
  • 13. sum= sum+ a; /*4th digit*/ a = n % 10; n = n / 10; sum= sum+ a; /*last digit extracted as reminder*/ a = num% 10; n = num/10; /*remaining digits*/ sum= sum+ a; /*sumupdated with adding of extracted digit*/ a = n % 10; sum= sum+ a; printf("nnnTheSumof FIVEDigit Number %d is = %d",num,sum); return 0; } Output:-
  • 14. Q:8 If a five-digit number is input through the keyboard. Write a program to reverse the number. Input:- #include<stdio.h> int main() { int n, a, b; long int revnum=0; printf("Enter the FIVEdigit number = "); scanf("%d",&n); /*1st digit*/ a = n % 10; n = n / 10; revnum= revnum+ a * 10000L; /*reversenumber updated with value of extracted digit*/ /*2nd digit*/ a = n % 10; n = n / 10; revnum= revnum+ a * 1000; /*3rd digit*/ a = n % 10;
  • 15. n = n / 10; revnum= revnum+ a * 100; /*4th digit*/ a = n % 10; n = n / 10; revnum= revnum+ a * 10; /*last digit*/ a = n % 10; revnum= revnum+ a; printf("nTheReversenumber = %ld",revnum); return 0; } Output:-
  • 16. Q:9 If a four-digit number is input through the keyboard. Write a program to obtain the sum of the first and last digit of this number. Output:- #include<stdio.h> int main() { int n, a, sum=0; printf("Enter a Four Digit Number = "); scanf("%d",&n); /*1st digit*/ a = n / 1000;
  • 17. sum= sum+ a; /*Last digit*/ a = n % 10; sum= sum+ a; printf("nnSumof Firstand Lastdigit of %d = %d",n,sum); return 0; } Output:- Q:10 In a town, the percentage of men is 52. The percentage of total literacy is 48. If total percentage of literate men is 35 of the total
  • 18. population. Write a program to find the total number of illiterate men and women if the population of the town is 80,000. Input:- #include<stdio.h> int main() { long int totpop = 80000; long int totmen, totlit, litmen, ilitmen, totwomen, totlitwomen; long int ilitwomen; totmen = (52/100) *totpop; printf("nTotalnumber of Mens in the Town is :tt %ld",&totmen); totlit = (48/100) *totpop; printf("nTotalnumber of Literate People in the Town is : %ld",&totlit); litmen = (35/100) *totpop; printf("nTotalnumber of Literate Mens in the Town is :t %ld",&litmen); totlitwomen = totlit - litmen; totwomen = totpop - totmen; printf("nTotalnumber of Womens in the Town is :tt %ld",&totwomen); ilitmen = totmen - litmen; printf("nTotalnumber of Illiterate Mens in the Town is : %ld",&ilitmen); ilitwomen = totwomen - totlitwomen;
  • 19. printf("nTotalnumber of Illiterate Womens in the Town is :%ld",ilitwomen); return 0; } Output:- Q:11 A cashier has currency notes of denominations 10, 50 and 100. If the amount to be withdrawn is input through the keyboard in
  • 20. hundreds, Find the total number of currency notes of each denomination the cashier will have to give to the withdrawer. Input:- #include<stdio.h> int main() { int amount, A, B, C; printf("Enter the Amount to be Withdrawn : "); scanf("%d",&amount); A = amount / 100; printf("nNumber of Hundred Notes = %d",&A); amount = amount % 100; B = amount / 50; printf("nNumber of Fifty Notes = %d",&B); amount = amount % 50; C = amount/ 10; printf("nNumber of Ten Notes = %d",&C); return 0; } Output:-
  • 21. Q:12 If the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one item. Input:- #include<stdio.h> int main() { float sp, cp, profit; printf("Enterthe total Selling Price = "); scanf("%f",&sp);
  • 22. printf("nEnterthe total Profit = "); scanf("%f",&profit); cp = sp - profit; /*Cost price per item*/ cp = cp / 15; printf("nnnCost Price Per Item are = %f",cp); return 0; } Output:-
  • 23. Q:13 If a five-digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits. For example if the number that is input is 12391 then the output should be displayed as 23402. Input:- #include<stdio.h> int main() { int num, a, n; int newnum=0; printf("Enter a FIVEDigit number = "); scanf("%d",&num); /*1st digit*/ a = num/ 10000 +1; n = num % 10000; newnum= newnum+ a * 10000L; /*2nd digit*/ a = n / 1000 + 1; n = n % 1000; newnum= newnum+ a * 1000; /*3rd digit*/ a = n / 100 + 1;
  • 24. n = n % 100; newnum= newnum+ a * 100; /*4th digit*/ a = n / 10 + 1; n = n % 10; newnum= newnum+ a * 10; /*5th digit*/ a = n + 1; newnum= newnum+ a; printf("nnnOld Number = %d, New Number = %ld",num,newnum); return 0; } Output:-