Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Articles as manual pages, or miniature tutorials?  
1 comment  




2 C++0x still cited widely  
2 comments  




3 for loop image  
1 comment  




4 Help with C++ Wikibook[1]  
1 comment  




5 Wikipedia:Articles for deletion/C++ grammar  
1 comment  




6 Request for comments: Establish standards for version history tables in software articles  
1 comment  




7 Requested move  
4 comments  




8 Member list  
1 comment  




9 Needs help  
1 comment  




10 C++ Compilers  
3 comments  




11 Why are C and C++ placed within a single project  
2 comments  




12 Request for information on WP1.0 web tool  
1 comment  




13 Move discussion at C18 (C standard revision)  
1 comment  




14 Why is BartonNackman trick marked as "Start-Class"?  
1 comment  




15 User script to detect unreliable sources  
1 comment  




16 Adoption  
2 comments  




17 Project-independent quality assessments  
1 comment  




18 Requested move at Talk:Associative containers#Requested move 26 September 2023  
1 comment  













Wikipedia talk:WikiProject C/C++




Page contents not supported in other languages.  









Project page
Talk
 

















Read
Edit
Add topic
View history
 








Tools
   


Actions  



Read
Edit
Add topic
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 

< Wikipedia talk:WikiProject C

WikiProject iconC/C++ NA‑class
WikiProject iconThis page is within the scope of WikiProject C/C++, a collaborative effort to improve the coverage of C and C++ topics on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
NAThis page does not require a rating on Wikipedia's content assessment scale.

Articles as manual pages, or miniature tutorials?[edit]

I see a number of articles related to C/C++ that are tutorials. For example, there is an article on stdarg.h which provides implementation instructions. Numerous code samples -- the entire standard library article series is written like this. Is this good for Wikipedia, to be partial, second-class documentation? A third-rate tutorial site? I don't understand the motive for including all this information in an encyclopedia. I know people are passionate about the language, but these articles are clearly beyond casual encyclopedic interest. See: http://en.wikipedia.org/wiki/Wikipedia:NOT#GUIDE -- thoughts?

I propose to eliminate or merge a large number of these library pages, without the code samples they're nothing but stubs. 75.119.90.35 (talk) 18:13, 24 October 2013 (UTC)[reply]

C++0x still cited widely[edit]

You guys are probably aware of this already, but I have noticed that many C++ and general computer programming articles still refer to C++0x as an upcoming standard, rather than to C++11 adopted in August of this year. Is there any organized effort to fix that or do we just let it trickle in? TiC (talk) 15:49, 12 November 2011 (UTC)[reply]

for loop image[edit]

Hi. I have found this image : File:C language for.png . Is it bad image ? ( increment should be done also after last check of condition ) Am I right ? Regards --Adam majewski (talk) 09:47, 24 March 2012 (UTC)[reply]

Help with C++ Wikibook[1][edit]

Hello all! I’m working with the Saylor foundation to create a series of original, crowd-sourced textbooks that will be openly licensed and freely available on the web and within Saylor’s free, self-paced courses at Saylor.org. We are using Wikibooks as a platform to host this project and hope to garner the interest of existing members of the Wikibooks and Wikipedia community, as well as bring in new members! We thought that some of your members may be interested in contributing to our book Saylor.Org's C++ Programming [2].(talk) --Thomas Simpson (talk) 17:20, 22 August 2012 (UTC)[reply]

See Wikipedia:Articles for deletion/C++ grammar. FYI, —Ruud 22:08, 5 November 2012 (UTC)[reply]

I'd like to introduce the Template:Version template to Wikipedia with the goal to establish one standard for version history tables (or lists). It simplifies creation of release histories, standardizes release stages and makes the content more accessible. Please comment on the template talk page (there already is some discussion). Thanks for your contribution. Jesus Presley (talk) 07:08, 28 November 2012 (UTC)[reply]

Requested move[edit]

The following discussion is an archived discussion of a requested move. Please do not modify it. Subsequent comments should be made in a new section on the talk page. Editors desiring to contest the closing decision should consider a move review. No further edits should be made to this section.

The result of the move request was: page moved. Arbitrarily0 (talk) 02:09, 1 March 2013 (UTC)[reply]


Wikipedia:WikiProject C++Wikipedia:WikiProject C/C++ – On 11 March 2006,‎ Deryck Chan (talk · contribs) moved Wikipedia:WikiProject CtoWikipedia:WikiProject C++. His reason Move the inactive project to a better location and get a fresh restart.

I disagree that "...C++" is a better location.

Sowlos 13:48, 21 February 2013 (UTC)[reply]

The above discussion is preserved as an archive of a requested move. Please do not modify it. Subsequent comments should be made in a new section on this talk page or in a move review. No further edits should be made to this section.

Member list[edit]

At some point, a few plain text names were included in the list of participants. I tried searching the names but cannot connect them to any existing Wikipedia accounts. As far as I can tell, they may be the names of three unregistered people.

Before simply removing them, I'm wondering if anyone knows who they might be.
Sowlos 11:09, 5 March 2013 (UTC)[reply]

Needs help[edit]

I wrote an article about a C++ book C++ Primer, but it was speedily deleted as advertisement. I hope some one would be able to help. Here is the deletion review. --HNAKXR (talk) 02:33, 8 June 2013 (UTC)[reply]

C++ Compilers[edit]

Computers understand only one language and that language consists of sets of instructions made of ones and zeros. This computer language is appropriately called machine language. A single instruction in computer might look like this: 0000 0001 (Binary Numbers)

A particular computer's machine language program that allows a user to input two numbers, adds the two numbers together and displays the total could include these machine code instructions: 00000 10011110 00001 11110100 00010 10011110 00011 11010100 00100 10111111 00101 00000000

As you can imagine, programming a computer directly in machine language using only ones and zeros is very tedious and error prone. To make programming easier, high level languages have been developed. High level programs also make it easier for programmers to inspect and understand each other's programs easier.

This is a portion of code written in C++ that accomplishes the exact same purpose:

int a, b, sum;

cin >> a; cin >> b;

sum = a + b; cout << sum << endl;


Even if you cannot really understand the code above, you should be able to appreciate how much easier it will be to program in the C++ language as opposed to machine language.

Because a computer can only understand machine language and humans wish to write in high level languages high level languages have to be re-written (translated) into machine language at some point. This is done by special programs called compilers, interpreters, or assemblers that are built into the various programming applications.

C++ is designed to be a compiled language, meaning that it is generally translated into machine language that can be understood directly by the system, making the generated program highly efficient. For that, a set of tools are needed, known as the development tool chain, whose core are a compiler and its linker.


14.96.222.110 (talk) 18:51, 19 January 2015 (UTC) [1][reply]

I'm not sure why the above was added to the talk page, but it is nice tutorial that probably belongs in an article (with a bit or rewording and some minor editing, such as my change of "is" to "might").Tripodics (talk) 16:25, 11 April 2015 (UTC)[reply]
It is unclear to me whether there has been any recent activity on this project. If there is some work to do, I'm willing to help out, but don't know how to participate.Tripodics (talk) 16:25, 11 April 2015 (UTC)[reply]

Why are C and C++ placed within a single project[edit]

Why are C and C++ placed within a single project? Martinkunev (talk) 16:57, 25 January 2016 (UTC)[reply]

Just for the historical record: the answer is literally a few sections above this one: Wikipedia talk:WikiProject C/C++#Requested_move --DanielPharos (talk) 23:47, 25 March 2017 (UTC)[reply]

Request for information on WP1.0 web tool[edit]

Hello and greetings from the maintainers of the WP 1.0 Bot! As you may or may not know, we are currently involved in an overhaul of the bot, in order to make it more modern and maintainable. As part of this process, we will be rewriting the web tool that is part of the project. You might have noticed this tool if you click through the links on the project assessment summary tables.

We'd like to collect information on how the current tool is used by....you! How do you yourself and the other maintainers of your project use the web tool? Which of its features do you need? How frequently do you use these features? And what features is the tool missing that would be useful to you? We have collected all of these questions at this Google form where you can leave your response. Walkerma (talk) 04:24, 27 October 2019 (UTC)[reply]

Move discussion at C18 (C standard revision)[edit]

Watchers of this page may be interested in the move discussion at Talk:C18_(C_standard_revision)#Requested_move_26_October_2020, regarding whether the WP:COMMONNAME of the current C standard revision is C17 or C18. - Astrophobe (talk) 21:56, 28 October 2020 (UTC)[reply]

Why is Barton–Nackman trick marked as "Start-Class"?[edit]

Hi,

I've carefully re-read Barton–Nackman trick (to which I had contributed many years ago) and it doesn't seem to lack anything important. I'd rate it as at least B-Class. Is there any particular reason why it is marked as a Start-Class article, instead? —Gennaro Prota•Talk 09:37, 3 January 2022 (UTC)[reply]

User script to detect unreliable sources[edit]

I have (with the help of others) made a small user script to detect and highlight various links to unreliable sources and predatory journals. Some of you may already be familiar with it, given it is currently the 39th most imported script on Wikipedia. The idea is that it takes something like

and turns it into something like

It will work on a variety of links, including those from {{cite web}}, {{cite journal}} and {{doi}}.

The script is mostly based on WP:RSPSOURCES, WP:NPPSG and WP:CITEWATCH and a good dose of common sense. I'm always expanding coverage and tweaking the script's logic, so general feedback and suggestions to expand coverage to other unreliable sources are always welcomed.

Do note that this is not a script to be mindlessly used, and several caveats apply. Details and instructions are available at User:Headbomb/unreliable. Questions, comments and requests can be made at User talk:Headbomb/unreliable.

- Headbomb {t · c · p · b}

This is a one time notice and can't be unsubscribed from. Delivered by: MediaWiki message delivery (talk) 16:01, 29 April 2022 (UTC)[reply]

Adoption[edit]

I'd like to adopt this WikiProject. If there are no objections, I'll adopt this WikiProject in a week. elijahpepe@wikipedia (he/him) 23:15, 14 March 2023 (UTC)[reply]

Seeing as this topic received no responses, I'll adopt the project anyway. elijahpepe@wikipedia (he/him) 21:52, 19 March 2023 (UTC)[reply]

Project-independent quality assessments[edit]

Quality assessments are used by Wikipedia editors to rate the quality of articles in terms of completeness, organization, prose quality, sourcing, etc. Most wikiprojects follow the general guidelines at Wikipedia:Content assessment, but some have specialized assessment guidelines. A recent Village pump proposal was approved and has been implemented to add a |class= parameter to {{WikiProject banner shell}}, which can display a general quality assessment for an article, and to let project banner templates "inherit" this assessment.

No action is required if your wikiproject follows the standard assessment approach. Over time, quality assessments will be migrated up to {{WikiProject banner shell}}, and your project banner will automatically "inherit" any changes to the general assessments for the purpose of assigning categories.

However, if your project has decided to "opt out" and follow a non-standard quality assessment approach, all you have to do is modify your wikiproject banner template to pass {{WPBannerMeta}} a new |QUALITY_CRITERIA=custom parameter. If this is done, changes to the general quality assessment will be ignored, and your project-level assessment will be displayed and used to create categories, as at present. Aymatth2 (talk) 20:46, 9 April 2023 (UTC)[reply]

There is a requested move discussion at Talk:Associative containers#Requested move 26 September 2023 that may be of interest to members of this WikiProject. ASUKITE 19:42, 4 October 2023 (UTC)[reply]

  1. ^ official_anurag@hotmail.com

Retrieved from "https://en.wikipedia.org/w/index.php?title=Wikipedia_talk:WikiProject_C/C%2B%2B&oldid=1178613085"

Categories: 
NA-Class C/C++ articles
NA-importance C/C++ articles
WikiProject C/C++ articles
Hidden category: 
WikiProject banners without banner shells
 



This page was last edited on 4 October 2023, at 19:42 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki