- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Beautify your code by using the tab in the variable declaration
Hồi trước mình có nói qua về cách dùng enum để định nghĩa những con số (có thể là hằng số) cụ thể giúp code đọc dễ hiểu hơn. An article of helloacm.com present how to make your code clearly. Visit this page: https://helloacm.com/avoid-magic-numbers-by-using-enum-in-cc/ ...
Dùng phần mềm nào để thiết kế Database?
Mình tìm trên mạng thì thấy có một số phần mềm sau: Microsoft SQL Server management studio express. SQLite. Microsoft® SQL Server® 2014 Express. … (Còn cái gì khác nhờ mọi người kể tên giúp để tham khảo) Phần mềm nào tiện lợi và dễ sử dụng cho các IDE có thể tương tác với SQL ?
Cách xử lý file với function trong C++
Có người hỏi mình vấn đề này nên mình làm cái video demo. Có gì thiếu sót hoặc chưa hiểu thì mọi người hỏi và bàn luận tại đây cũng được.
Qt - How to get a selected part from QTableView
Em có cái table view tương tự bên dưới. Làm thế nào để lấy dữ liệu từ 1 vùng được quét trong toàn bộ table?
Share đồ án cơ sở ngành - Quản lý thông tin giảng viên C++
Vừa làm xong cái báo cáo đồ án C++ (File). Share ra để mấy bạn sinh viên chuẩn bị làm đồ án cơ sở tham khảo. MediaFire project.rar MediaFire is a simple to use free service that lets you put all your photos, documents, music, and video in a single place ...
Có kiểu truyền tham số này trong C++ không?
Mở mấy cái file plugin trong bộ add-on game ra thấy kiểu khai báo hàm như thế này: native ServerCommand(const String:format[], any:...); cái tham số any:…
Không load được data từ file C++
Trong class Lecturer em định nghĩa lại operator>> như sau: istream& operator>> (istream& in, Lecturer& L) { in >> L.ID; getline(in, L.name); getline(in, L.major); getline(in, L.qualification); getline(in, L.position); ...
Designed for developers – Dell launches two new Ubuntu-based systems
blog.ubuntu.com Designed for developers – Dell launches two new Ubuntu-based systems Ubuntu's strong developer community will be pleased to hear that two new Dell devices targeted at developers are now available in market: the Dell XPS 13 laptop and ...
Error: 'Lecture' is not a type C++
Khi overload operator ‘=’ thì bị thông báo lỗi như trên, như thế nghĩa là sao? Khắc phục như thế nào ạ? File Lecturer.h: #ifndef LECTURER_H #define LECTURER_H #include "defination.h" ... class Lecturer { Lecturer& operator= (const Lecturer& L); } ... #endif File ...
C++ Print 1 to 100 without using loop, recursion, goto
Just for fun! http://www.quora.com/How-can-I-print-1-to-100-in-C++-without-a-loop-GOTO-or-recursion