C Chapter 06
C Chapter 06
(a) The do… while statement first executes the loop body and then evaluate the loop control
expression.
Ans: True.
(b) In a preset loop, if the body is executed n terms, the test expression is executed n+1 times.
Ans: True.
(c) The number of times a control variable is updated always equals the number of loop
iterations.
Ans: True.
(d) Both the preset loops include initialization within the statement.
Ans: True.
(e) In a for loop expression, the starting value of the control variable must be less than its ending
value.
Ans: True.
(f) The initialization, test condition and increment parts may be missing in a for statement.
Ans: False.
(g) While loops can be used to replace for loops without any change in the body of the loop.
Ans: False.
Ans: False.
(i) The use of continue statement considered as unstructured programming.
Ans: True.
(j) The three loop expressions used in a for loop header must be separated by commas.
Ans: True.
(a) In an exit controlled loop, if body is executed n times, test condition is evaluated
times.
Ans: (n-1)
Ans: continue.
Ans: infinite
(e)In a counter controlled loop, variable known as is used to count the loop operation.
(a)for (n=1;n!=10;n+=2)
sum=sum+n;
(b)for(n=5;n<=m;n-=1)
sum+=n;
Ans: The continue until n<=m where m initializes from 5 and decrements by 1.
(c) for(n=1;n<=5)
sum+=n;
Ans: Since theren is no increment or decrement condition the loop repeats 5 times.
sum+=n;
(e)for(n=1;n<5;n++)
n=n-1;
6.9: what would be the output of each of the following code segments?
(a)count=5;
while(count-- >0)
printf(“count”);
Output:
54321
(b)count=5;
while(-- count>0)
Printf(“count”);
Output:
4321
(c) count=5;
do printrf(“count”);
while(count>0)
Output:
54321
(d)for(m=10;m>7;m-=2)
printf(“m”);
output;
10 8
6.11:Analyse each of the program segment that follow the determine how many times the
body of each loop will be executed.
(a)x=5;
y=50;
while(x<=y)
x=y/x;
…………………..
…………………..
(b) m=1;
do
……………………
……………………….
m+=2;
}
while(m<10)
Ans: 5 times.
(c) int i;
for(i=0;i<=5;i=i+2/3)
…………………..
…………………….
Int n=7;
while(m%n>=0)
………………
m+=1;
n+=2;
…………….
Ans: 4 times.
6.12: Find errors, if any, in each of the following looping segments. Assume that all the
variables have been declared and assigned values.
(a)while(count!=10);
count=1;
sum+=x;
count+=1;
Error: while(count!=10);
(b) name=0;
do
name+=1;
while(name=1);
(c) do;
total+=value;
scanf(“%f”,&value);
while(value!=999);
Error: do;
Correct Ans: do
(E) m=1;
n=0;
for(p=10;p>0;)
p-=1;
printf(“%f”,p);
Error: for(p=10;p>0;)
p-=1;
printf(“%f”,p);
p-=1;
printf(“%f”,p);
(a) 1,2,4,8,16,32
Ans: for(i=1;i<=32;i=i*2)
printf(“%d”,i);
(b) 1,3,9,27,81,243
Ans: for(i=1;i<=243;i=i*i)
printf(“%d”,i);
(c) -4,-2,0,4
for(i=-4;i<=4;i=i+2)
printf(“%d”,i);
(d) -10,-12,-14,-18,-26,-42
for(i=-10;i<=-42;i=i-2)
printf(“%d”,i);
printf(“m”);
Ans: m=1;
while(m<10)
…………….
m++;
printf(“m”);
(b)for(;scanf(“%d”,&m)!=-1;)
printf(“m”);
Ans:
while(scanf(“%d”,&m)!=-1)
printf(“m”);
Int m=100,n=0;
while(n==0)
if(m<10)
break;
m=m-10;
Output: No output
6.17: What is output of the following code?
int m=0;
do
if(m>10)
continue;
m=m+10;
while(m<50);
printf(“%d”,m);
Output: 50
int n=0,m=1;
do
printf(“m”);
m++;
while(m<=n);
Output: 1
int n=0,m;
for(m=1;m<=n+1;m++)
printrf(“m”);
Output: 1
for(; ;)
Ans : When we need an infinity loop the statement for(; ;) can be used.
Programming exercises
Problem 6.1: Given a integer number write using while loop to reverse the digit of the
number. For example, the number
12345
should be written as
54321
Solution:
#include
#include
void main()
clrscr();
scanf("%ld",&n);
while(n>10)
{
b=n%10;
n=n/10;
printf("%ld",n);
getch();
Problem 6.2: The factorial of an integer m is the product of consecutive integers from 1 to
m. that is
Factorial m=m!=m*(m-1)*…………………*1.
Write a program that computes and print the result for any given m.
Solution :
/*……………………………factorial…………………………*/
#include
#include
void main()
int sum,i,m;
clrscr();
printf(“Input number:”);
scanf("%d",&m);
sum=1;
for(i=m;i>1;i--)
sum*=i;
printf("The result is: %d",sum);
getch();
Problem 6.3: Write a program that compute the sum of the digit of a given integer number.
Solution:
#include
#include
void main()
clrscr();
printf("\n\n\nInput number:");
scanf("%ld",&n);
while(n>10)
b=n%10;
printf("%ld+",b);
n=n/10;
sum+=b;
sum+=n;
1 1 2 3 5 8 13 21……………………..
Solution :
/*……………………Fibonacci sequence…….……………….*/
#include
#include
void main()
clrscr();
int m,x,y,n,z;
m=0;
x=0;
y=1;
scanf("%d",&n);
printf("%d",y);
do{
z=x+y;
x=y;
y=z;
m++;
}while(m<n);< span=""></n);<>
getch();
1 1 2 3 5 8 13 21……………………..
Solution :
/*……………………Fibonacci sequence…….……………….*/
#include
#include
void main()
clrscr();
int x,y,n,z,i;
x=0;
y=1;
printf("\n\nInput number:");
scanf("%d",&n);
printf("%d",y);
for(i=1;i<=n;i++)
{
z=x+y;
x=y;
y=z;
getch();
V=P(1+r)
And print the tables which would give the value of V for various combination of the
following values of P,r and n.
Solution:
/*…………investment equation………………..*/
#include
#include
#include
void main()
int i,n,p,j;
double v,r,t;
printf("\n\n\n");
clrscr();
r=0.10;
n=10;
p=1000;
t=pow((1+r),i);
// printf("\n\n%.6lf ",t);
printf("\nP R N V\n");
for(i=1;i<=n;i++)
t=pow((1+r),i);
v=p*t;
p=p+1000;
r=r+0.01;
printf("\n");
getch();
Problem 6.7(a): Write the program to print the following outputs using for loops.
22
333
4444
55555
Solution :
/*………...trivues……………*/
#include
#include
Void main()
int i,j,n;
clrscr();
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=i;j++)
printf("%d",i);
printf(" ");
printf("\n");
getch();
Problem 6.7(b): Write programs to print the following outputs using for loops.
*****
****
***
**
Solution:
/*………………………….star…………………….….*/
#include
#include
void main()
int i,j,n,c;
clrscr();
printf(“Input number:”);
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=n;j++)
c=i;
if(c>j)
printf(" ");
c++;
}
else
printf("*");
printf("\n");
getch();
Problem 6.8:Write a program to read the age of 100 persons and count the number of
persons in the age group 50 to 60. Use for and continue statements.
Solution:
#include
#include
void main()
clrscr();
int count,i,age;
for(i=1;i<=100;i++)
scanf("%d",&age);
if(age>=50&&age<=60)
count+=1;
continue;
}
getch();
Y1=exp(-a*x)
Y2=exp(-a*x*x/2)
Solution:
#include
#include
#include
void main()
clrscr(); printf("\n\n");
int i;
float a,x,y1,y2;
a=0.4;
printf(" Y.....>\n");
printf("0-----------------------------------------------------\n");
for(x=0;x<5;x+=0.25)
{
y1=(int)(50*exp(-a*x)+0.5);
y2=(int)(50*exp(-a*x*x/2)+0.5);
if(y1==y2)
if(x==2.5)
printf("x|");
else
printf(" |");
for(i=1;i<=(y1-1);++i)
printf(" ");
printf("#\n");
else if(y1>y2)
if(x==2.5)
printf("x|");
else
printf(" |");
for(i=1;i<=(y2-1);++i)
printf(" ");
printf("*");
for(i=1;i<=(y1-y2-1);++i);
printf("-");
printf("0\n");
else
if(x==2.5)
printf("x|");
else
printf(" |");
for(i=1;i<=(y1-1);++i)
printf(" ");
printf("0");
for(i=1;i<=(y2-y1-1);++i)
printf("-");
printf("*\n");
printf(" |\n");
getch();
Y=exp(-x)
/*……………….y=exp(-x)………………*/
#include
#include
#include
void main()
clrscr();
int i,j;
float y;
printf("\n\n....................................\n");
printf("x");
for(i=0;i<10;i++)
for(j=0;j<10;j++)
y=exp(-i);
printf("\n");
getch();
}
Problem 6.11: Write a program that will read a positive integer and determine and print its
binary equivalent.
Solution:
/* ………………….to binary…………………..*/
#include
#include
void main()
char binary[20],temp[20];
int i,j,num;
clrscr();
i=0;
printf("\n\nEnter value:");
scanf("%d",&num);
while(num>=1)
temp[i++]=(num%2)+48;
num=num/2;
for(j=i-1;j>=0;j--)
printf("%c",temp[j]);
getch();
}
Problem6.12: Write a program using for and if statement to display the capital letter S in a
grid of 15 rows and 18 columns as shown below.
******************
******************
******************
****
****
****
******************
******************
******************
****
****
****
*******************
*******************
*******************
Solution :
/*……………………S grid…………………..*/
#include
#include
void main()
clrscr();
int row,col,i,j,k;
row=15;
col=18;
for(i=1;i<=row;i++)
if((i<=3)||(i>=7&&i<=9)||(i>=13&&i<=15))
for(j=1;j<col;j++)< span=""></col;j++)<>
printf("*");
printf("\n");
else if(i>=4&&i<=6)
for(j=1;j<=4;j++)
printf("*");
printf("\n");
else
for(j=1;j<=13;j++)
printf(" ");
for(j=1;j<=4;j++)
printf("*");
printf("\n");
getch();
Problem 6.13:Write a program to compute the value of Euler’s number e, that is used as
the base of natural logarithms. Use the following formula.
e=1+1/1!+1/2!+1/3!+…………………………………+1/n!
use a suitable loop construct. The loop must terminate when the difference between two
successive values of e is less than 0.00001.
Solution:
/*……………………….Euler’s number……………………..*/
#include
#include
float fact(float i)
float f=1;
int k;
for(k=1;k<=i;k++)
f*=k;
return(f);
void main()
{
float e,a,b,d=1,temp;
int i,j,k;
clrscr();
e=1;i=2;b=1;
while(d>=0.00001)
temp=fact(i);
a=1/temp;
e=e+a;
d=b-a;
if(d>=0.00001)
b=a;
i++;
getch();
Problem 6.14: Write programs to evaluate the following functions to 0.0001% accuracy.
Solution:
/*……………….sinx function………………..*/
#include
#include
#include
double f=1;
int k;
for(k=1;k<=power;k++)
f=f*k;
return f;
void main()
int i=1;
double x,term,deno,lob,sin,power=3;
clrscr();
scanf("%lf",&x);
term=x;
sin=x;
while(term>=0.0001)
lob=pow(x,power);
deno=fact(power);
term=lob/deno;
power+=2;
if(i%2==1)
sin=sin-term;
else
sin=sin+term;
i++
getch();
Problem 6.14: Write programs to evaluate the following functions to 0.0001% accuracy.
Solution:
/*……………….cosx function………………..*/
#include
#include
#include
double f=1;
int k;
for(k=1;k<=power;k++)
f=f*k;
return(f);
}
void main()
int i=1;
double x,term,deno,lob,cos,power=2;
clrscr();
scanf("%lf",&x);
term=1.0;
cos=1.0;
while(term>=0.0001)
lob=pow(x,power);
deno=fact(power);
term=lob/deno;
power+=2;
if(i%2==1)
cos=cos-term;
else
cos=cos+term;
i++;
getch();
}
Problem 6.14(c): Write programs to evaluate the following functions to 0.0001% accuracy.
Sum=1+(1/2)2+(1/3)3+(1/4)4+…………………………………
Solution:
/*…………………..accuracy…………….*/
#include
#include
#include
void main()
double term,deno,lob,sum;
clrscr();
term=1.0;
sum=1.0; lob=1.0;deno=2.0;
while(term>=0.0001)
term=lob/deno;
term=pow(term,deno);
sum+=term;
deno++; printf("%lf",sum);
getch();
}
Problem6.15: The present value (popularly known as book value )of an item is given by the
relationship
P=c(1-d)n
D=rate of depreciation
N=number of years
If p is considered the scrap value at the end of useful life of the item, write a program to
compute the useful life in years given the original cost, depreciation rate, and the scrap
value.
Solution:
#include
#include
#include
void main()
clrscr();
int n,c;
double d,p,lob,hor;
scanf("%d%lf%lf",&c,&d,&p);
lob=log(p/c);
hor=log(1-d);
n=lob/hor;
printf("year=%d",n); getch();
Problem 6.16(a): Write a program to print a square size 5 by using the character S as
shown below
SSSSS
SSSSS
SSSSS
SSSSS
SSSSS
Solution :
/*……………….square size………………..*/
#include
#include
void main()
clrscr();
int i,j;
printf("\n\n");
for(i=0;i<=4;i++)
for(j=1;j<=5;j++)
printf(" S");
printf("\n\n");
}
getch();
Problem 6.16(b): Write a program to print a square size 5 by using the character S as
shown below
SSSSS
SS
SS
SS
SSSSS
solution :
/*……………….square size………………..*/
#include
#include
void main()
int i,j,n;
clrscr();
n=5; printf("\n\n");
for(i=1;i<=n;i++)
printf("s ");
printf("\n\n");
for(i=1;i<=n-2;i++)
{
printf("s ");
for(j=1;j<=n-2;j++)
printf(" ");
printf("s\n\n");
for(i=1;i<=n;i++)
printf("s ");
printf("\n");
getch();
Problem 6.18 : Write the program to print all integers that are not divisible by 2 or 3 and
lie between 1 and 100. Program should also account the number of such integers and print
the result.
Solution:
#include
#include
void main()
int i,count,sum;
clrscr();
sum=0;
count=0;
for(i=1;i<=100;i++)
{
if(i%2!=0&&i%3!=0)
sum+=i;
count++;
printf("%d\n",i);
printf("the sum of the value is :%d \nthe countable numbers is: %d",sum,count);
getch();
Problem 6.19: Write a program to print a square of size 5 by using the character S as
shown below:
SSSSS
SSSSS
SSOSS
SSSSS
SSSSS
Solution:
#include
#include
void main()
{
int n,i,j,mid;
clrscr();
printf("\n\n");
scanf("%d",&n);
mid=(int)(n/2);
for(i=0;i<n;i++)< span=""></n;i++)<>
for(j=0;j<n;j++)< span=""></n;j++)<>
if(i==mid&&j==mid)
printf("0 ");
else
printf("s ");
printf("\n\n");
getch();
Problem 6.20: Given a set of 10 two-digit integer containing both positive and
negative values, write a program using for loop to compute the sum of all
positive values and print the sum and the number of values added. The program
should use scanf to read the values and terminate when the sum exceeds 999.
Do not use goto statement.
Solution:
#include
void main()
nt sum,n,i,j=0;
sum=0;
clrscr();
for(i=0;i<10;i++)
scanf("%d",&n);
if(n>0)
sum+=n; j++;}
if(sum>999)
break;
printf("\n\nThe value of positive numbers is:%d\nand the countable number is: %d",sum,j);
getch();