logo

Crowdly

Browser

Додати до Chrome

Basic Programming

Шукаєте відповіді та рішення тестів для Basic Programming? Перегляньте нашу велику колекцію перевірених відповідей для Basic Programming в moodle.usthlearningsupport.vn.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

How do you correctly declare a pointer to a 2D array?
0%
0%
0%
0%
Переглянути це питання

What is the output of the following C code?

#include <stdio.h>

int main() {

char str[] = "Hello";

str[0] = 'J';

printf("%s", str);

return 0;

}

0%
0%
100%
0%
Переглянути це питання

What happens when the following C code runs?

        #include <stdio.h>

int main() {

int i = 5;

printf("%d", i+++++i);

return 0;

}

0%
100%
0%
0%
Переглянути це питання

What will the following C code print?

#include <stdio.h>

int main() {

unsigned int x = 4294967295;

printf("%u", x + 1);

return 0;

}

0%
0%
0%
0%
Переглянути це питання
#include

int main() {

int arr[2][2] = {{1, 2}, {3, 4}};

printf("%d", arr[3][3]);

return 0;

}

0%
0%
0%
100%
Переглянути це питання
Which of the following is a correct format for declaration of function?
0%
0%
100%
0%
Переглянути це питання

#include <stdio.h>

int main() {

int x = 10;

printf("%d, %d, %d\n", x<1, x=100, x>=10);

return 0;

}

What is the output?

0%
100%
0%
0%
Переглянути це питання
Which of the following is not a valid storage class in C?
0%
0%
0%
0%
Переглянути це питання

What will be the output of the following C program?

        #include <stdio.h>

int main() {

int a = 5, b = 10;

int *p1 = &a, *p2 = &b;

*p1 = *p2;

printf("%d %d", a, b);

return 0;

}

0%
0%
100%
0%
Переглянути це питання
Which of the following correctly declares a 2D array in C?
0%
0%
0%
0%
Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на moodle.usthlearningsupport.vn?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome