EvoNext
1.79K subscribers
272 photos
16 videos
266 files
485 links
Download Telegram
                      #include <iostream>
using namespace std;
int myFun(int);

int main(){
int m;

m = 10;

cout << myFun(m);

return 0;
}

int myFun(int y)
{

if( y == 0 || y == 1 || y == 2 )
{
return 1;
}
else{

return ( y + 1) + myFun( y - 3);
}
}
which if the following can not be a structure memeber?
Anonymous Quiz
16%
another structure
30%
function
14%
array
40%
none
the data elements in the structure is known as what?
Anonymous Quiz
35%
objects
49%
members
14%
data
2%
none of the above
πŸ‘2πŸ‘Ž2
##" Write a definition for a structure type for records consisting of a person’s
wage rate, accrued vacation (which is some whole number of days), and
status (which is either hourly or salaried). Represent the status as one of
the two char values 'H' and 'S'. Call the type EmployeeRecord.
πŸ‘1
C++ problem@:
An election is contested by five candidates. The candidates are numbered 1 to 5, and the voting is done by marking the candidate number on the ballot paper. Write a program to read the ballots and count the votes cast for each candidate using an array variable count. In case, a number read is outside the range 1 to 5, the ballot should be considered as a β€œspoiled ballot”, and the program should also count the number of spoiled ballots.
πŸ‘1
[Forwarded from LEARN TO CODE]
GREAT OFFER


FOR (12 +1) STUDENTS ONLY‼️

Are you looking for freshman reading materials?

then look at this gift for πŸ’―% free:

- modules

- exams[ mid, final] of different universities

- reference books

- and different materials in voice and videos
.... are some of them.

first semister courses:-

βœ…General physics
βœ…mathematics for natural
βœ…mathematics for social
βœ… logic and critical thinking
βœ…communicative english
βœ… Psychology
βœ… Geography


second semister courses:

βœ…Emerging
βœ…general biology
βœ…applied mathematics
βœ…programming I
βœ… civcs and moral education
βœ… economics
βœ… anthropology
βœ…communicative english II

....much more!


https://t.me/exbost
https://t.me/exbost
share for your friend
https://t.me/exbost
https://t.me/exbost
join learn to code
https://t.me/exbost


TRUST! YOU GONNA LOVE IT!
πŸ‘2
EvoNext pinned Β«[Forwarded from LEARN TO CODE] GREAT OFFER FOR (12 +1) STUDENTS ONLY‼️ Are you looking for freshman reading materials? then look at this gift for πŸ’―% free: - modules - exams[ mid, final] of different universities - reference books…»
C++_Templates_The_Complete_Guide_learn_to_code_tleegram_channel.pdf
2.7 MB
what are c++ templates ?πŸ‘ŒπŸ‘Œ





join and share


join the discussion group β€”> < L T C >
πŸ‘1
c++ exam..πŸ”–

credit: @Hazon64
FILE MANAGEMENT SYSTEM c++.LEARNtoCODE.pdf
926.8 KB
ifstream/ofstream/fstream/iostreamπŸ‘†πŸΏπŸ‘†πŸΏ
share:- learn to code
πŸ‘1
Program Plan: (Question)

β€’ Prompt the user for the file name, try to open the input file, display an error message and exit the program if the file name is not found.

β€’ Read the first number from the file using the if-condition which reads a number from the file, if any number exists in the file. If no numbers exist in the file, this condition stands failed.

β€’ Repeat a while loop to read all numbers in the file and to find the largest and smallest number in the file.

β€’ Display the largest and smallest numbers in the file.

β€’ Display a message to the user if the file contains no numbers that the file is empty.
ANSWER: Β»https://t.me/learntocodecpp/399Β«
πŸ”₯1