首页 > 编程语言 >整理的 英文 c/c++ 编程 wiki

整理的 英文 c/c++ 编程 wiki

时间:2022-12-16 23:04:34浏览次数:74  
标签:wiki www http 编程 c++ html C++ com


不断更新中。。。


 all wikis

 ​​http://wiki.linuxquestions.org/wiki/C/C%2B%2B_Tutorials​


C++ / C,国外一个开发者自己收集的站点

​http://www.shokhirev.com/nikolai/projects/links/cpp.html​

 

Steve Summit's的站点

​http://www.eskimo.com/~scs/index.html​

 

专注c++ 

​http://www.learncpp.com/​


那本 c语言 faq的站点 

​http://c-faq.com/​


 beej 的个人站点,有几个很好的guide在上面。

​http://beej.us/guide/​​ 

 

C Programming

 ​​http://en.wikibooks.org/wiki/C_programming​

C++

​http://en.wikiversity.org/wiki/C%2B%2B​

C/C++ TUTORIALS



* ​​​http://en.wikibooks.org/wiki/Programming:C_contents​​​ * ​​http://www.cprogramming.com​​ * ​​ http://www.silicontao.com/ProgrammingGuide/index.html​​ * ​​http://www.cyberdiem.com/vin/tutorials.html​
* ​​ http://www.zeuscmd.com/tutorials/cplusplus/index.php​​ * ​​http://www.cplusplus.com/doc/tutorial/​​ * ​​http://en.wikibooks.org/wiki/C++​​ * ​​ http://cplus.about.com/od/beginnerct...blcplustut.htm​​ * ​​http://www.bloodshed.net/dev/doc/index.html​

​A Tutorial on pointers and arrays in C​​​​C Programming​​​​The C Book​​​​Writing bug-free C code​​​​C - Elements of style​​​​C Annotations​​​​Object First​​​​C++ Programming HOW-TO​​​​Programming in C++ - Rules and Recommendations​​​​C++ Coding Standard​​​​Debugging C and C++ code in a Unix environment​​​​The Function Pointer Tutorials​​​​Introduction To OOP Using C++​​​​The Standard Template Library​​​​Standard Template Library Programmer's Guide​​​​How To Think Like A Computer Scientist Learning with C++​​​​Thinking In C++ 2nd Edition - Volume I​​​​Thinking In C++ 2nd Edition - Volume II​​​​http://cprog.tomsweb.net/cintro.html​​​​http://galton.uchicago.edu/~gosset/Compdocs/gcc.html​​​​http://www.freeprogrammingresources.com/ctutor.html​​​​http://www.augustcouncil.com/%7Etgibson/tutorial/​​​​http://www.intelligentedu.com/newly_resear...training/C.html​​​​http://www.geocities.com/SiliconValley/Software/5562/​​​​http://www.newty.de/fpt/index.html​

​C++ pointers basics​

​Object-Oriented Programming With ANSI C​


​http://www.cs.wustl.edu/~schmidt/C++/​


 ​​Douglas C. Schmidt's ​​的Tutorials

​http://www.cs.wustl.edu/~schmidt/tutorials.html​

标签:wiki,www,http,编程,c++,html,C++,com
From: https://blog.51cto.com/u_15747257/5948811

相关文章

  • 关于 ipv4 ipv6 socket 编程 wiki
     Beej'sGuidetoNetworkProgrammingUsingInternetSockets ​​http://www.retran.com/beej/index.html​​  Berkeleysockets ​​http://en.wikipedia.org/wiki......
  • c c++函数指针 Tutorials
    ​​http://www.newty.de/fpt/index.html​​Callbacks,functionpointersTheFunctionPointerTutorialsbyLarsHaendel:​​http://www.newty.de/fpt/index.html​......
  • 调试+linux+网络问题+wiki
    SimpleNetworkTroubleshooting​​http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch04_:_Simple_Network_Troubleshooting​​​​http://www.linuxh......
  • C++的四种强制转换
    reinterpret_cast使用形式:reinterpret_cast<type-id>(expression)type-id必须是一个指针、引用、算术类型、函数指针或者成员指针。它可以用于类型之间进行强制转换(不可......
  • C/C++大数据行程码识别系统
    C/C++大数据行程码识别系统大数据行程码识别系统一、编程题(60分)大数据行程码是疫情防控的主要手段,请用C语言设计简单的大数据行程码识别系统具体功能描述:1、建......
  • 【JAVA】JAVA编程自学网站
    一、参考资料​​Java全栈知识体系​​​​尚硅谷Java入门视频教程(在线答疑+Java面试真题)_哔哩哔哩_bilibili​​......
  • Python之Socket编程: 轻松连接你的应用程序
    前言什么是Socket?Python的Socket模块提供了一个标准的接口,可以让你使用网络连接来通信。Socket是一种网络通信技术,它提供了一个通用的接口来连接不同类型的网络,例......
  • k倍区间【第八届蓝桥杯省赛C++B组,第八届蓝桥杯省赛JAVAB组】
    k倍区间给定一个长度为\(N\)的数列,\(A1,A2,…AN\),如果其中一段连续的子序列\(Ai,Ai+1,…Aj\)之和是\(K\)的倍数,我们就称这个区间\([i,j]\)是\(K\)倍区间。你能......
  • Java-面向对象编程(oop)6-笔记
    1.面向对象的思想面向:拿或者找对象:东西面向对象编程:拿或者找东西过来编程解决问题面向对象:把现实世界中的事物全部看成一个一个的对象来解决问题的。(万物皆对象)面向对象编程......
  • [c++实践]02-异常处理
    总结:在c++编程中,不建议使用异常。因为c++标准没有定义异常的实现方式,并且异常也不可以跨线程。构造函数异常构造函数可以抛出异常,此时对象还没有完全构造完成,对象的生命周期......