Software Engineer, System Engineering Jobs
https://www.linkedin.com/jobs2/view/17112011?trk=rj_nus&goback=.nmp_*1_*1_*1_*1_*1_*1_*1_*1_*1_*1_*1_*1_*1_*1
Nguyễn mẫu của hàm
Tại sao lại có con trỏ * ở trước tên hàm ạ. void *init(int *X , int n)
Hàm tinh giờ trong tài liệu C_aptech bị lỗi?
đây là code trong sách : http://codepad.org/isaMJJvq #include <stdio.h> #include <conio.h> //khai bao prototype void time(int &,int &); //ham doi phut thanh gio:phut void time(int &ig,int &ip) { ig = ip/60; ip %= 60; } void main (void) { int igio, ...
[Wiki] Bit fields trong C/C++
Lâu lâu khi đọc code C bạn sẽ thấy cái này. Share ra cho mọi biết chơi về bit fields. Khi nào rảnh Đạt sẽ viết bài hoặc videos về cái này. Copy từ wiki: http://www.wikiwand.com/en/Bit_field // bit field box properties struct box_props { unsigned int opaque : 1; unsigned int ...
Phạt 205 triệu, rút giấy phép trang haivl.com
Tin cũ http://tuoitre.vn/tin/van-hoa-giai-tri/20141024/phat-205-trieu-dong-rut-giay-phep-trang-haivlcom-se-chuyen-ho-so-sang-co-quan-cong-an/662845.html
Các câu chúc mừng sinh nhật ý nghĩa
Lượm được mấy câu sau, ai còn câu nào nữa không? SNVV = sau này vất vả = sau này vất vưỡng HPBD = Hạnh phúc bỏ đi CMSN = Chúc mày số nhọ = Chúc mày sẽ nghèo
Hàm nhập số nguyên
#include <stdio.h> #include <stdlib.h> void nhapSoNguyen(int &n) { printf("nhap vao so nguyen: %d"); scanf("%d", &n); } int tinhTong(int a, int b) { return a + b; } int tinhHieu(int a, int b) { return a - b; } int tinhTich (int a, int b) { return a * ...
Chocolatey - somewhat like apt-get, but built with Windows in mind
Chocolatey Chocolatey - The package manager for Windows Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is ...
nhập môn cơ sở dữ liệu
chào các anh chị và các bạn, em đang học cơ sở dữ liệu và em cũng nghe nói là môn này có ảnh hưởng rất lớn đến các môn học về sau nên cần học vững. Nhưng em cảm thấy môn này rất khó khăn với em, ko biết có phải là do em tư duy kém cỏi hay ko. Vì vậy mong dc sự chia sẽ của các a chị đã học môn này ...
Tên miền .com .net ... giá 1000 VND
Tên miền .com .net … giá 1000 VND https://tenten.vn/bang-gia-ten-mien
Agile Tour Vietnam 2014
http://www.twenty.vn/cong-dong/agile-tour-vietnam-2014
Từ khóa mới cho thanh niên - Startup là gì?
lmgtfy.com LMGTFY LMGTFY
Poll: Kiểm tra kiến thức C - 1.6
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 6.Which of the statements is correct about the program? #include<stdio.h> int main() { float a=3.14; char *j; j = (char*)&a; printf("%d ", *j); return 0; } ...
Bài tập mảng trong C++
Bài 1: Viết một hàm tính tổng các số được nhập trên dòng lệnh ( dùng hàm atoi để chuyển chuỗi thành số). Ví dụ: Nhập: 1 2 3 4 0 Xuất: 10
Poll: Kiểm tra kiến thức C - 1.5
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 5.Which of the following statements are correct about the function? long fun(int num) { int i; long f=1; for(i=1; i<=num; i++) f = f * i; return f; } ...
Poll: Kiểm tra kiến thức C - 1.4
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 4.The keyword used to transfer control from a function back to the calling function is A. switch B. goto C. go back D. return
Poll: Kiểm tra kiến thức C - 1.3
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 3.Point out the error in the following program. #include<stdio.h> int main() { struct emp { char name[20]; float sal; }; struct emp e[10]; int i; ...
Indiabix - C Programming Test 1
http://www.indiabix.com/online-test/c-programming-test/11
Poll: Kiểm tra kiến thức C - 1.2
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 2.What will be the output of the program? #include<stdio.h> int main() { int k, num=30; k = (num>5 ? (num <=10 ? 100 : 200): 500); printf("%d ", num); return ...
Poll: Kiểm tra kiến thức C - 1.1
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/11 Which of the following statements are correct about the below C-program? #include<stdio.h> int main() { int x = 10, y = 100%90, i; for(i=1; i<10; i++) if(x != y); ...