No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
/*QUESTION 2*/ [code] /*Program to compute frequency of a list of marks obtained by a group of students*/ #include <stdio.h> #define SIZE 100 main() { /*define n as number of students.x[SIZE] is a array to store marks of students*/ /*tempo[SIZE] is also used to store marks, but used in computation …
hi! I've tried another way of doin this.. Can u tell me how do i modify to make the program run forever? the code is:- #include main(){ char line[100];int count;{ printf("Enter a line of text below:\n"); scanf("%[^\n]", line); printf("\n"); printf("\nEncoded text:\n"); for(count=0; line[count]!='\0'; ++count) { if(((line[count]>='A') && (line[count]='a') && (line[count]
i need to write a program that- allow the user to enter the number of students-allow the user to enter each mark-calculate the frequency for each mark-the interval that exists between identical marksthis is what i have donei want to know if there is a different way of doing it#include#define …
i need to write a program that- allow the user to enter the number of students-allow the user to enter each mark-calculate the frequency for each mark-the interval that exists between identical marksthis is what i have donei want to know if there is a different way of doing it …
The End.
neeven