Câu hỏi của Đỗ Trung Quân

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", ...

Đỗ Trung Quân viết 16:02 ngày 30/09/2018 chỉnh sửa

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), ...

Đỗ Trung Quân viết 16:02 ngày 30/09/2018 chỉnh sửa

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()

Đỗ Trung Quân viết 16:02 ngày 30/09/2018 chỉnh sửa

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: ...

Đỗ Trung Quân viết 16:02 ngày 30/09/2018 chỉnh sửa

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ử ...

Đỗ Trung Quân viết 16:02 ngày 30/09/2018 chỉnh sửa
<< < .. 7 8 9 10