Поделитесь своими знаниями, ответьте на вопрос:
Який вигляд має блок-схема неповного розгалуження опишіть її виконання
#include <stdio.h>
#include <stdlib.h>
struct LIST {
int number;
struct LIST *next; };
//
void Push(struct LIST** list, int number) {
struct LIST* node = malloc(sizeof(struct LIST));
node->number = number;
node->next = *list;
*list = node; }
//
void Print(const struct LIST* list) {
if (list) {
Print(list->next);
printf("%d ", list->number); } }
//
int main() {
int i = 10;
struct LIST* list = NULL;
while (i--) {
Push(&list, i + 1); }
//---(это разделение разных программ)