Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~894 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for neeven

/*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 …

Member Avatar for Ancient Dragon
0
161
Member Avatar for slash10

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]

Member Avatar for neeven
0
179
Member Avatar for neeven

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 …

Member Avatar for Salem
0
298
Member Avatar for neeven

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 …

Member Avatar for indianscorpion2
0
256

The End.