Advertisement
3axap_010

main.cpp

Jun 18th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.48 KB | None | 0 0
  1. // lab8_2sem.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
  2. //
  3.  
  4. #include "pch.h"
  5. #include "Header.h"
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include <conio.h>
  10. #include <locale.h>
  11.  
  12. int main()
  13. {
  14.     setlocale(LC_ALL, "Russian");
  15.  
  16.     struct list* ring = NULL;
  17.  
  18.     struct student* stud = NULL;
  19.  
  20.     choose(&ring, stud);
  21.  
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement