- 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
Poll: Kiểm tra kiến thức C - 1.11
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 11.What will be the output of the program ? #include<stdio.h> int main() { char str[] = "Nagpur"; str[0]='K'; printf("%s, ", str); str = "Kanpur"; printf("%s", ...
Poll: Kiểm tra kiến thức C - 1.10
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/112 10.If char=1, int=4, and float=4 bytes size, What will be the output of the program ? #include<stdio.h> int main() { char ch = 'A'; printf("%d, %d, %d", sizeof(ch), ...
Poll: Kiểm tra kiến thức C - 1.9
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/112 9.The library function used to find the last occurrence of a character in a string is A. strnstr() B. aststr() C. strrchr() D. strstr()
Poll: Kiểm tra kiến thức C - 1.8
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 an array? 1: The array int num[26]; can store 26 elements. 2: The expression num[1] designates the very first element in the array. 3: ...
Hàm qsort();: Có thể bạn đã biết
Hàm qsort thực hiện thuật giải QuickSort cho C Mô tả hàm thư viện trong C dùng sắp xếp một mảng được khai báo như sau: void qsort(void *base, size_t nitems, size_t size, int (*compar)(const void *, const void*)) Đối số base – Con trỏ trỏ đến đầu mảng cần sắp xếp. nitems – Số phần tử ...