General C++ Programming - September 2019 (Page 7)

I need to calculate the grade of a student in one method
 
#include <iostream> using namespace std; void qualityPoints(); int main() { qualityPoints(); system("pause"); return 0; } void qualit...
[7 replies] Last: With minimal rewriting: #include <iostream> void qualityPoints(); i... (by George P)
private access specifier nature
 
Can someone tell me what the following does and what does it show about the nature of the private access specifier?? #include <iostream> using namespace std;...
[3 replies] Last: what does it show about the nature of the private access specifier?? ... (by Repeater)
by frek
Nesting Lambda Expressions
 
Hi, Will you, please, explain how the outcome here is 13, exactly: int i = (int x) { return (int y) { return y * 2; }(x)+3; }(5); cout << "i = " << i ...
[3 replies] Last: Got it! Thank you very much, guys. :) (by frek)
September 2019 Pages: 1... 567
  Archived months: [aug2019] [oct2019]

This is an archived page. To post a new message, go to the current page.