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 #107.55K
~636 People Reached
About Me

proud to be INDIAN

Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for super.sam1

// find total marks of 30 students using for loop #include <iostream> using namespace std; int main() { int marks[30]; int totalmarks = 0; for(int j = 0; j < 30; j++ ) { cout << "Enter marks of student " << j+1; cin >> marks[j]; totalmarks = totalmarks + …

Member Avatar for rajol.singh1
0
636

The End.