C++ Tutorial – Getting Started
An introductory tutorial for C++ programming language providing an overview of types, constants, operators, pointers, arrays and classes.
An introductory tutorial for C++ programming language providing an overview of types, constants, operators, pointers, arrays and classes.
An operating system is a layer of software residing above hardware, hiding intricate details and providing an easy to use virtual machine.
The string library functions strlen, strcat, strcpy, strcmp, strstr, strtok can be used for string operations in C.
A string can be either variable or constant. A variable string can be modified in the program whereas a constant string cannot be changed.
The Gregorian calendar was adopted in 1582. A C Program to find the day of the week for a given date as per Gregorian calendar is explained.
flex, "fast lexical analyzer", is a software tool for scanning input file and breaking it into recognizable chunks of text, called tokens.
The problem of synchronizing multiple concurrent processes is explained and a solution is provided with an example program.
Regular expressions are used for searching strings in text files. Regular expressions are explained with usage in a C program.
The dining philosophers problem is about deadlock in concurrent systems. The dining philosophers problem is explained with example programs.
Strong passwords are generated by using random characters. A C program is provided to generate random passwords.