It is a video meeting app. You can simply share the ID to call someone.
It is a online game. You try to escape from corona viruses. Stay safe!
It is a 2D game created with java classes. In game, java.awt, java.awt.event, javax.swing, java.util and the other some libraries which are required are used. There is a chicken who escape from cat souls which are flowing up on the screen. Also, the chicken is trying to shoot the targets randomly appearing in both corners of the screen to level up.
It is written with C++. Memory allocation system is used in the registration system. when new entry is adding the system, the code allocate the new memory place for the new entry. And also, when any entry in the system is deleted, the code remove the memory place that belongs to that entry. In the code, there are RegistrationSystem class methods which are addStudent, deleteStudent, addCourse, withdrawCourse, cancelCourse, showStudent, showCourse, showAllStudents.
It is 2D game created with python using pygame library. In the game numbers are randomly displayed in the screen with an randomly order. The gamers try to keep the numbers in their mind. When being successful, levels are increased and on-screen time for numbers is getting shorter.
By doing lexical analysis, lex convert lexemes to tokens. In your source code for lex, you can create your keywords, definition range of variables and such that. Flex is using for lex. Flex which is a tool for generating scanners recognizes lexical patterns in text and convert source code to readable c code. Yacc is using with bison. By doing syntax analysis, yacc generate a compiler for the lex code. yacc’s source code is converted to c code includes header file. After all the operations, generated codes compile with gcc and then C-Based own programming language created.
Data Structures are the important algorithms for programming. In this file, you can see some examples about data structures such as AVL tree, BST e.g written with C programming language.
There are three code documents in the file. First one is use of fork and pipe functions for OS. It is written with C. Second one is server-client communication architecture. It is written with java. And the last one is creating threads in OS. It is written with C.