Opening and Creating a file in different modes || Files and File handling || Bcis notes
Opening and Creating a file in different modes C File management A File can be used to store a large volume of persistent data. Like […]
Opening and Creating a file in different modes C File management A File can be used to store a large volume of persistent data. Like […]
Pointers and Structures If you are working on a program to store video game purchases, you have several options. You could create dozens of variables […]
Pointers and Arrays A pointer is a value that designates the address (i.e., the location in memory), of some value. Pointers are variables that hold […]
Pointers and Functions In C, like normal data pointers (int *, char *, etc), we can have pointers to functions. Following is a simple example […]
Pointer data type The pointer data type is unique among the FreeBasic numeric data types. Instead of containing data, like the other numeric types, a […]
Unions A union is a special data type available in C that allows storing different data types in the same memory location. You can define […]
Arrays and structures Array in C An array is collection of items stored at continuous memory locations. An array of structures in C can be […]
Nested type structure Nested structure in C is nothing but the structure within a structure. One structure can be declared inside other structures as we […]
Initializing structures The structure is used for collecting different data types together. The structure is Collection of different data types. There are different ways of […]
Program design methodology When programs are developed to solve real-life problems like inventory management, payroll processing, student admissions, examination result processing, etc., they tend to […]
Generations of programming language Programming languages have been developed over the year in a phased manner. Each phase of development has made the programming language […]
Recursion in C programming Recursion is the process of repeating items in a self-similar way. In programming languages, if a program allows you to call a […]
Introduction to String Introduction to String is a data type used in programmings, such as an integer and floating-point unit, but is used to represent […]
Multidimensional arrays In C/C++, we can define multidimensional arrays in simple words as an array of arrays. Data in multidimensional arrays are stored in tabular […]
Arrays Arrays and Strings allow for a set of variables to be grouped as one variable. This is useful in its own right, but also […]
Fundamental concept of computer A computer is a programmable machine capable to perform arithmetic and logical operations automatically and sequentially. It is also known as […]
Types of Looping and Function Looping is the repetition of any statement until the given condition is satisfied. Repetitive operation is done by a loop […]
Input-Output Statement An input-output statement or IO statement is a portion of a program. Input means to provide the program with some data to be […]
Operators, Header File A header file is a file containing C declarations and macro definitions (see Macros) to be shared between several source files. You […]
C Programming Language C is a programming language developed by Dennis Ritchie at the bell laboratories in the mid-1970s. A c programming language is a […]
Assembler Assembler is the type of computer program that interprets software programs written in assembly language into machine language, code, and instructions that can be […]
Stages of Software Development The stages of software development models describe phases of the software cycle and the order in which those phases are executed. […]
Copyright © 2024 | WordPress Theme by MH Themes