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 no of the literate men and women if the population of
the town is 80000

Answer Posted / sonu

#include<stdio.h>
#include<conio.h>

void main()
{
float men,wmen,lit,illit,lit_men,lit_wmen,illit_men,illit_wmen,tot_pop;
men=80000*0.52;
wmen=80000-men;
lit=80000*0.48;
illit=80000-lit;
lit_men=80000*0.35;
lit_wmen=lit-lit_men;

illit_men=men-lit_men;
illit_wmen=wmen-lit_wmen;

printf("Total No. Illiterate men = %f",illit_men);
printf("
Total No. Illiterate woman = %f",illit_wmen);

getch();

}

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why header file is used in c?

577


Explain zero based addressing.

608


When should volatile modifier be used?

555


What is the difference between single charater constant and string constant?

622


What does it mean when the linker says that _end is undefined?

632






Explain what does the function toupper() do?

633


hi, which software companys will take,if d candidate's % is jst 55%?

1661


what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)

1927


What does do in c?

608


Why do we use header files in c?

580


How can you determine the size of an allocated portion of memory?

741


How can I read a binary data file properly?

635


What should malloc() do?

644


What are the 5 data types?

600


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?

1916