This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "dependencies": { | |
| "<Gitepo>": "git+https://<token-from-github>:x-oauth-basic@github.com/<user>/<GitRepo>.git" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define FIO_MAX_SIZE 50 | |
| struct TStudent { | |
| char fio[FIO_MAX_SIZE]; | |
| int year; | |
| int group; | |
| int ratings[4]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* for build use gcc name.c -o name */ | |
| #include <math.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| void find_and_swap(int, int, int**); | |
| void show(int, int, int**); | |
| int main() | |
| { |