logo

Crowdly

Browser

Add to Chrome

Основи програмування в авіаційній та ракетно-космічній техніці

Looking for Основи програмування в авіаційній та ракетно-космічній техніці test answers and solutions? Browse our comprehensive collection of verified answers for Основи програмування в авіаційній та ракетно-космічній техніці at vns.lpnu.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Яка операція над покажчиками заборонена?
View this question
Що НЕ дозволяє realloc()?
View this question
Що НЕ є функцією виділення пам'яті в C?
View this question
Як відбувається управління динамічною пам'яттю?
View this question
Чим відрізняються malloc() та calloc()?
View this question
Для чого призначена функція free()?
View this question

Що виведе наступний фрагмент програми?

int i = 0;

while (1) 

{

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

if (i > 3) break; 

else continue;

}

View this question

Число з якого діапазону роздрукує наступна програма?

 int num;

do {

scanf("%d",&num); 

while(num<1 || num>10); 

printf("%d", num);

View this question
Що робить наступна програма з від'ємними числами?

#include

int main()

{

int a,i,n,s; n=6; s=0;

for(i=0; i

{

scanf("%d",&a);

if(a<=0)

continue;

s+=a;

}

printf("сума = %d

",s);

return 0;

}

View this question

Що буде? do { break; } while(1);

View this question

Want instant access to all verified answers on vns.lpnu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome