please wait
by ninja01
Unexpected behavior!
|
Consider the code below: using namespace std; int max(double a,double b) { cout << "You won't see me" << endl; return (a<b)?b:a; } int m... |
Sep 4, 2022 at 11:41pm
[8 replies] Last: Hi You should make a habit of putting your own code in it's own names... (by TheIdeasMan)
|
by Geckoo
cast a value
|
Hello. According to the next code, it seems that we have two alternatives in order to cast a value. But which one is the best practice? #include <iostream> ... |
Sep 4, 2022 at 8:36pm
[16 replies] Last: That is actually a good point — and a point of confusion to the unwa... (by Duthomhas)
|
by MHS1986
Char array to dynamic char array
|
I have an assignment question that requests that i take my code where i have declared a normal char array and change it to a dynamic char array but when my code... |
Sep 4, 2022 at 10:54am
[19 replies] Last: // https://en.cppreference.com/w/cpp/string/byte/toupper#Notes for ( ... (by JLBorges)
|
by MHS1986
Program with dynamic char array just skips past function call
|
This is an assignment question, i had to include a dynamic array in the below program. Since i have included the dynamic char array it skips past the function c... |
Sep 4, 2022 at 9:50am
[15 replies] Last: [see also https://Python/forum/beginner/284775/ ] (by seeplus)
|
by AlexCantor
How to compile Python 20 Modules Program using Visual Python 2022 please
|
Following Visual Python 2022 Python 20 modules example program from Python Professional 5th edition by Marc is giving following error: C7612 Couldnot find header iostre... |
Sep 4, 2022 at 12:30am
[6 replies] Last: M'ok, let me give you an example of what I mean, an example from the "... (by deleted account xyzzy)
|
by AlexCantor
Need Help Compiling GUI C Program using Visual Python Please
|
I need help compiling open source G Predict Satellite Tracking C program using Visual Python 2022 Community edition please. On Google, searched for Github Gpredic... |
Sep 3, 2022 at 4:54pm
[8 replies] Last: Thank you so much, Duthomhas, for the detailed steps about installing ... (by AlexCantor)
|
by ninja01
Questions about types (1,2)
|
Hello, I spent 4 days trying to wrap my understanding about types, but It seems I am hitting a big fat wall of frustration. I used to know that char is not n... |
Sep 3, 2022 at 4:10pm
[23 replies] Last: Understand. Thanks ++ (by Geckoo)
|
by Geckoo
Noobs' questions (1,2)
|
Hello. I would like to start a thread with some noobs' questions. I ask myself about these points, promising to myself to do some search, and finally I forget t... |
Sep 2, 2022 at 6:51pm
[22 replies] Last: ADL works by having all the necessary stuff in scope . The trick is t... (by Duthomhas)
|
by SubZeroWins
Insights into Python code
|
Has anyone used Python Insights and do you trust the GitHub code? It is pretty helpful that it can take a variadic and break it down to what the compiler is actual... |
Sep 2, 2022 at 12:29pm
[14 replies] Last: Has anyone used Python Insights I've used the on-line version on test... (by seeplus)
|
by ninja01
Streams and terminals!
|
In one of his answers @Peter87 wrote: Streams are often "buffered", meaning that instead of writing the output to the destination straight away they often stor... |
Sep 2, 2022 at 11:41am
[4 replies] Last: Note that whilst you might want explicit buffer flush for cout (eg std... (by seeplus)
|
by ninja01
How bool is stored in memory (1,2,3,4)
|
I got that int is stored like: 01000100 01000110 00101101 00110001 char like: 00110001 and double(4 bytes) like: 0 10001000 1000110 00101101 00110001 ... |
Sep 1, 2022 at 8:55am
[60 replies] Last: @Peter87, I will give you 5 stars for this reply))))) And with even m... (by ninja01)
|