cplusplus.com
Open in
urlscan Pro
54.39.7.252
Public Scan
Submitted URL: http://1708480264834.breakablekisystem.com/06dc9cd2-4b2c-4af2-9c1d-7fa6dab5e869?n=1&t=1708480264834&l_next=ahr0chm6ly93d3cuagfudgvyyxn0b2xl...
Effective URL: https://cplusplus.com/
Submission: On February 21 via api from US — Scanned from US
Effective URL: https://cplusplus.com/
Submission: On February 21 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 SubZeroWins Container questions (1,2,3) [Beginners] Just read and practiced my vector/deque/list/forward_list/set/multiset containers and I wondered about this one. 1) Why did they make it so that a set is REQ... Feb 21, 2024 at 8:19am2024-02-21T18:19:18.000Z [40 replies] Last: Why are there 3x destructors here?[/quote] It can depend on the imple... (by Peter87) by Duthomhas Finally switched to Linux Mint (1,2) [Lounge] Got a new PC (finally) and since it is really nice, modern hardware I am finally making the move from Windows. I liked[/i] Windows 7. Very clean, good OS. Wi... Feb 21, 2024 at 7:15am2024-02-21T17:15:35.000Z [25 replies] Last: Unlike MacOS or Windows there are more than one option available for ... (by jonnin) by JUANDENT Can you give me an example of parametric polymorphism [General C++ Programming] Hi, I need a few examples of parametric polymorphism please. Regards, Juan Dent Feb 20, 2024 at 7:47am2024-02-20T17:47:26.000Z [1 reply] : Here's what CoPilot has to say: Certainly! In C++, parametric polymo... (by AbstractionAnon) by Jonathan100 Shared variable between thread(ISR) and main() [Beginners] Hello folks, I want to create a variable that will be shared between a thread (ISR) and main() I am working on embedded environment on linux os Basically... Feb 15, 2024 at 3:33am2024-02-15T13:33:08.000Z [5 replies] Last: Atomic operations[/b] are great for something like a "shared" [i]coun... (by kigar64551) by Cplusc BSF Algorithm [General C++ Programming] An undirected graph has 24 vertices denoted by A’, B,’ C’, D’, E’, F’, G’, H’, I’, J’, K’, L’, M’, N’, P’, Q’, R’, S’, T’, U’, V’, W’, Y’, and Z’ respectively. ... Feb 14, 2024 at 9:44pm2024-02-15T07:44:40.000Z [1 reply] : [code]{'D', {'A', 'K', 'J', 'I'}}[/code][/quote] From D you can reach... (by keskiverto) by malibor Where to get dictionaries for spellcheck during coding? [Lounge] I'm coding in VSCode and use the extension called cSpell which let's me set custom dictionaries to spell check code, comments and any text in source files. P... Feb 13, 2024 at 7:03pm2024-02-14T05:03:47.000Z [5 replies] Last: IDK if SCOWL[/b] would be useful to you. http://wordlist.aspell.net/ (by Duthomhas) by George P Visual Studio 17.9 now available [Lounge] Fair warning, to just install[/i] this update requires .NET Framework 4.7.2 or later. Boo! Feb 13, 2024 at 5:09pm2024-02-14T03:09:29.000Z [1 reply] : Oops! I forgot the release notes link: https://learn.microsoft.com/e... (by George P) by Ch1156 Collision detection using bit manipulation [Beginners] So while working on a small game I discovered that the usual if statements for collision detection work fine for single directions, but when I had collision in ... Feb 11, 2024 at 1:34am2024-02-11T11:34:33.000Z [12 replies] Last: Using bool and simplified, consider: #include <iostream> #include <... (by seeplus) by Duthomhas My daughter is awesome II [Lounge] My wife and daughter were sitting on the bed just now, watching New Year's videos, and something flashy came on with apparently kind of cool content. wife: T... Feb 10, 2024 at 4:18pm2024-02-11T02:18:23.000Z [2 replies] Last: Well, tonight my daughter and I played a violin duet in public for the... (by Duthomhas) by George P Oh, my! [Lounge] Now at least one person is talking about proposed C+++26 features: https://www.cppstories.com/2024/constexpr-number-parsing-cpp23/ I'm still wrapping my b... Feb 7, 2024 at 10:02am2024-02-07T20:02:53.000Z [13 replies] Last: I don't think that's the direction it's going in.[/quote] I know bein... (by George P) Home page | Privacy policy © cplusplus.com, 2000-2023 - All rights reserved - v3.3.4s Spotted an error? contact us x