User Profile

Collapse

Profile Sidebar

Collapse
young1
young1
Last Activity: Oct 8 '19, 08:26 PM
Joined: Oct 2 '19
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • young1
    started a topic how to read and write in text file
    in C

    how to read and write in text file

    I am trying to write and read entered text into a text file. I have managed to write into the text file but reading from it is proving a challenge. I can provide a snippet of code. and stud is an object of a class students. I'm using c++.

    Code:
    {
    				
    					string str;
    					int n, count = 0;
    				
    				cout<<"Enter number of courses: ";
    				cin>>n;
    						
    			for(int
    ...
    See more | Go to post

  • young1
    started a topic displaying number of students in each course
    in C

    displaying number of students in each course

    I'm using c++(language)
    i need to display number of students doing each course, seemingly it displays the first number well but the second time i try it adds all the students doing all courses. here's the code below:
    Code:
    	{
    					string str;
    					int n, count = 0;
    				
    				cout<<"Enter number of courses: ";
    				cin>>n;
    							
    			for(int i=0; i<=n-1; i++)
    ...
    See more | Go to post
    Last edited by gits; Oct 4 '19, 07:20 AM. Reason: added code tags
No activity results to display
Show More
Working...