cplusplus.com
Open in
urlscan Pro
54.39.7.252
Public Scan
Submitted URL: http://1710356724136.breakablekisystem.com/5a152662-7e11-418f-9ff8-80192977767b?n=1&t=1710356724136&l_next=ahr0chm6ly93d3cuamlueg5vdgxvc2v0...
Effective URL: https://cplusplus.com/
Submission: On March 14 via api from US — Scanned from US
Effective URL: https://cplusplus.com/
Submission: On March 14 via api from US — Scanned from US
Form analysis
2 forms found in the DOM<form class="gsc-search-box gsc-search-box-tools" accept-charset="utf-8">
<table cellspacing="0" cellpadding="0" role="presentation" class="gsc-search-box">
<tbody>
<tr>
<td class="gsc-input">
<div class="gsc-input-box" id="gsc-iw-id1">
<table cellspacing="0" cellpadding="0" role="presentation" id="gs_id50" class="gstl_50 gsc-input" style="width: 100%; padding: 0px;">
<tbody>
<tr>
<td id="gs_tti50" class="gsib_a"><input autocomplete="off" type="text" size="10" class="gsc-input" name="search" title="search" aria-label="search" id="gsc-i-id1" dir="ltr" spellcheck="false"
style="width: 100%; padding: 0px; border: none; margin: 0px; height: auto; outline: none;"></td>
<td class="gsib_b">
<div class="gsst_b" id="gs_st50" dir="ltr"><a class="gsst_a" href="javascript:void(0)" title="Clear search box" role="button" style="display: none;"><span class="gscb_a" id="gs_cb50" aria-hidden="true">×</span></a></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
<td class="gsc-search-button"><button class="gsc-search-button gsc-search-button-v2"><svg width="13" height="13" viewBox="0 0 13 13">
<title>search</title>
<path
d="m4.8495 7.8226c0.82666 0 1.5262-0.29146 2.0985-0.87438 0.57232-0.58292 0.86378-1.2877 0.87438-2.1144 0.010599-0.82666-0.28086-1.5262-0.87438-2.0985-0.59352-0.57232-1.293-0.86378-2.0985-0.87438-0.8055-0.010599-1.5103 0.28086-2.1144 0.87438-0.60414 0.59352-0.8956 1.293-0.87438 2.0985 0.021197 0.8055 0.31266 1.5103 0.87438 2.1144 0.56172 0.60414 1.2665 0.8956 2.1144 0.87438zm4.4695 0.2115 3.681 3.6819-1.259 1.284-3.6817-3.7 0.0019784-0.69479-0.090043-0.098846c-0.87973 0.76087-1.92 1.1413-3.1207 1.1413-1.3553 0-2.5025-0.46363-3.4417-1.3909s-1.4088-2.0686-1.4088-3.4239c0-1.3553 0.4696-2.4966 1.4088-3.4239 0.9392-0.92727 2.0864-1.3969 3.4417-1.4088 1.3553-0.011889 2.4906 0.45771 3.406 1.4088 0.9154 0.95107 1.379 2.0924 1.3909 3.4239 0 1.2126-0.38043 2.2588-1.1413 3.1385l0.098834 0.090049z">
</path>
</svg></button></td>
<td class="gsc-clear-button">
<div class="gsc-clear-button" title="clear results"> </div>
</td>
</tr>
</tbody>
</table>
</form>
Name: I_loginform — POST /user/access.cgi
<form name="I_loginform" method="POST" action="/user/access.cgi" style="display: none;">
<div class="fields"><input type="hidden" name="w" value="login"><input type="hidden" name="y" value="1"><input type="hidden" name="to" value="https://cplusplus.com/">user name: <input type="text" name="l" id="l" class="txt" size="8"
title="Type user name"><br>password: <input type="password" name="p" id="p" class="txt" size="8" title="Type password"><br><input type="checkbox" name="rememberme" value="1" class="chk" id="rememberme"><label for="rememberme"></label><input
type="submit" class="rbtn" value="sign in">
<div class="forgot"><a href="/user/access.cgi?w=lostpass">Forgot your password?</a></div>
</div>
</form>
Text Content
cplusplus.com * TUTORIALS * REFERENCE * ARTICLES * FORUM × search user name: password: Forgot your password? please wait try again cancel forgot your password? sign up log in [Legacy version] C++ * Tutorials * Reference * Articles * Forum * home TUTORIALS C++ Language: Learn this versatile and powerful programming language. Includes detailed explanations of pointers, functions, classes and templates, among others... REFERENCE Description of the most important classes, functions and objects of the Standard Language Library, with descriptive fully-functional short programs as examples. Browse the C++ Reference ARTICLES User-contributed articles, organized into different categories. You can contribute your own articles! Browse Articles LATEST FORUM ACTIVITY: by JamieAl Convert MATLAB function to C++ [General C++ Programming] I have a function from a textbook: https://people.maths.ox.ac.uk/trefethen/spectral.html Basically it calculates the Chebyshev differentiation matrix and I hav... Mar 14, 2024 at 8:30am2024-03-14T18:30:36.000Z [11 replies] Last: I noticed something when I try to use the output [...] to perform mat... (by mbozzi) by SubZeroWins C++ Questions (1,2,3) [Beginners] 1) Why does "&myChar " act differently in 2 different contexts? [code] char* pointer = &myChar[0]; //ALSO WORKS!!! [/code] Above, it actually return th... Mar 14, 2024 at 6:57am2024-03-14T16:57:30.000Z [42 replies] Last: Something to consider.... C++: Console User Input Done Right http://... (by George P) by JUANDENT Cyclic dependencies - how to deal with them? [General C++ Programming] Hi, I have a class GridCtrl that delegates to GridCtrlHandler but GridCtrlHandler must also be able to call methods on GridCtrl. I cannot have GridCtrl.h ... Mar 14, 2024 at 6:34am2024-03-14T16:34:41.000Z [6 replies] Last: Heh, I created a circular dependency issue using modules and Visual St... (by George P) by Zaap Threading: changing processor count does not change performances [General C++ Programming] Hi, I've been doing some multi-threading in my program. This program essentially iterates over a dataset and for each line computes some stuff. My multi-t... Mar 14, 2024 at 5:50am2024-03-14T15:50:31.000Z [2 replies] Last: How long does each thread run for? If it's very short it might not be ... (by Peter87) by Duthomhas Program testing works... when you’ve enabled it... [Lounge] Spent two hours trying to figure out why my X11 window wasn’t getting keyboard focus and input. It was. ...I had just turned off all my debugging output to... Mar 13, 2024 at 11:08am2024-03-13T21:08:25.000Z [no replies] by seeplus C++ Safety in Context [Lounge] See: https://herbsutter.com/2024/03/11/safety-in-context/ Mar 13, 2024 at 11:03am2024-03-13T21:03:40.000Z [1 reply] : I didn’t read the (very long) appendix, but it was a good rebuttal to ... (by Duthomhas) by JamieAl Why is my fft function not working as expected? [General C++ Programming] Trying to take the fft of 2D array along one direction (x for example and not y) so it's a 1D FFT of 2D array. I have done this successfully before using Eigen ... Mar 10, 2024 at 2:48pm2024-03-11T00:48:17.000Z [7 replies] Last: @mbozzi Thanks a lot! I think this answers my question and gets me th... (by JamieAl) by Zaap vector push_back passing size from 0 to overflow [General C++ Programming] Hi, please see the following code and the associated prints. I also add the Argument class below. Basically, it crashes the second time it goes in the loop b... Mar 8, 2024 at 6:18am2024-03-08T16:18:12.000Z [2 replies] Last: What is the definition of _arguments? (by seeplus) by BigNibs Looking for tutor for OOP class [Beginners] Hi everyone, I dont know if this is the right channel to ask this but im starting to fall behind pretty hard in my OOP class, I really need to catch up on a cou... Mar 7, 2024 at 12:03am2024-03-07T10:03:57.000Z [2 replies] Last: For a different take on your lecture notes, have a look at: https://ww... (by seeplus) by spistol Linking problem with qrcodegencpp [Linux] [Beginners] Installing a new library and future its compilation is always pain for me. I've just installed simple lib: https://www.nayuki.io/page/qr-code-generator-library... Mar 6, 2024 at 10:56pm2024-03-07T08:56:28.000Z [4 replies] Last: >> /usr/lib/x86_64-linux-gnu/libqrcodegencpp.so.1 > This one looks lik... (by keskiverto) Home page | Privacy policy © cplusplus.com, 2000-2023 - All rights reserved - v3.3.4s Spotted an error? contact us x