SlideShare a Scribd company logo
1 of 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

More Related Content

What's hot

Dynamic memory allocation in c++
Dynamic memory allocation in c++Dynamic memory allocation in c++
Dynamic memory allocation in c++Tech_MX
 
Inheritance in c++
Inheritance in c++Inheritance in c++
Inheritance in c++Vineeta Garg
 
Chapter 6 Balagurusamy Programming ANSI in c
Chapter 6  Balagurusamy Programming ANSI  in cChapter 6  Balagurusamy Programming ANSI  in c
Chapter 6 Balagurusamy Programming ANSI in cBUBT
 
DAA Lab File C Programs
DAA Lab File C ProgramsDAA Lab File C Programs
DAA Lab File C ProgramsKandarp Tiwari
 
Constructor and Types of Constructors
Constructor and Types of ConstructorsConstructor and Types of Constructors
Constructor and Types of ConstructorsDhrumil Panchal
 
If else statement in c++
If else statement in c++If else statement in c++
If else statement in c++Bishal Sharma
 
[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member Functions[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member FunctionsMuhammad Hammad Waseem
 
10. switch case
10. switch case10. switch case
10. switch caseWay2itech
 
Chapter 5 Balagurusamy Programming ANSI in c
Chapter 5 Balagurusamy Programming ANSI  in cChapter 5 Balagurusamy Programming ANSI  in c
Chapter 5 Balagurusamy Programming ANSI in cBUBT
 
Chapter 8 c solution
Chapter 8 c solutionChapter 8 c solution
Chapter 8 c solutionAzhar Javed
 
Function overloading and overriding
Function overloading and overridingFunction overloading and overriding
Function overloading and overridingRajab Ali
 
[OOP - Lec 16,17] Objects as Function Parameter and ReturnType
[OOP - Lec 16,17] Objects as Function Parameter and ReturnType[OOP - Lec 16,17] Objects as Function Parameter and ReturnType
[OOP - Lec 16,17] Objects as Function Parameter and ReturnTypeMuhammad Hammad Waseem
 
friend function(c++)
friend function(c++)friend function(c++)
friend function(c++)Ritika Sharma
 

What's hot (20)

C++ Inheritance
C++ InheritanceC++ Inheritance
C++ Inheritance
 
Dynamic memory allocation in c++
Dynamic memory allocation in c++Dynamic memory allocation in c++
Dynamic memory allocation in c++
 
Inheritance in c++
Inheritance in c++Inheritance in c++
Inheritance in c++
 
Functions in c++
Functions in c++Functions in c++
Functions in c++
 
C if else
C if elseC if else
C if else
 
Chapter 6 Balagurusamy Programming ANSI in c
Chapter 6  Balagurusamy Programming ANSI  in cChapter 6  Balagurusamy Programming ANSI  in c
Chapter 6 Balagurusamy Programming ANSI in c
 
DAA Lab File C Programs
DAA Lab File C ProgramsDAA Lab File C Programs
DAA Lab File C Programs
 
Constructor and Types of Constructors
Constructor and Types of ConstructorsConstructor and Types of Constructors
Constructor and Types of Constructors
 
If else statement in c++
If else statement in c++If else statement in c++
If else statement in c++
 
[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member Functions[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member Functions
 
10. switch case
10. switch case10. switch case
10. switch case
 
Introduction to c++ ppt 1
Introduction to c++ ppt 1Introduction to c++ ppt 1
Introduction to c++ ppt 1
 
File handling in c++
File handling in c++File handling in c++
File handling in c++
 
Storage class in C Language
Storage class in C LanguageStorage class in C Language
Storage class in C Language
 
Chapter 5 Balagurusamy Programming ANSI in c
Chapter 5 Balagurusamy Programming ANSI  in cChapter 5 Balagurusamy Programming ANSI  in c
Chapter 5 Balagurusamy Programming ANSI in c
 
Chapter 8 c solution
Chapter 8 c solutionChapter 8 c solution
Chapter 8 c solution
 
Function overloading and overriding
Function overloading and overridingFunction overloading and overriding
Function overloading and overriding
 
[OOP - Lec 16,17] Objects as Function Parameter and ReturnType
[OOP - Lec 16,17] Objects as Function Parameter and ReturnType[OOP - Lec 16,17] Objects as Function Parameter and ReturnType
[OOP - Lec 16,17] Objects as Function Parameter and ReturnType
 
Dynamic programming
Dynamic programmingDynamic programming
Dynamic programming
 
friend function(c++)
friend function(c++)friend function(c++)
friend function(c++)
 

Similar to 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
 

Similar to 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
 

Recently uploaded

MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样umasea
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 

Recently uploaded (20)

MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
办理学位证(UQ文凭证书)昆士兰大学毕业证成绩单原版一模一样
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 

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:-