Looking for Процедурне програмування (кіббез) test answers and solutions? Browse our comprehensive collection of verified answers for Процедурне програмування (кіббез) at distedu.ukma.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
In which area of program memory is the variable counter stored?
static int counter;
int main (void) {
return 0;
}
What is correct way to declare string "Mike" in C?
What happens if we execute the following code?
int arr[3] = {1, 2, 3};printf("%d", arr[3]);
In case of declaration:
int arr[5];
what does sizeof(arr) / sizeof(arr[0]) evaluate to?
Which of the following statements about static arrays in C are correct?
What happens here?
char *s = "Mike";s[0] = 'J';
What happens if you declare a very large static local array?
void foo() { double arr[10000000];}
What will be printed?
char str[20] = "Hi";
printf("%lu",sizeof(str));
How large is a string?
What is the purpose of a null terminator?