| by Arround The Web

Strtok Function in C

The strtok() function is a predefined C library function that enables us to break strings into multiple strings or zero. Strtok function in C is discussed.

Share Button
Read More
| by Arround The Web

Structures in C

In C Language, Structures are combined data type initialization that is used to group multiple variables into a single type.

Share Button
Read More
| by Arround The Web

Command Line Argument Processing in C

A guide on how to use the command line argument in the C programming language and implement it in Windows in single or separate lines using examples.

Share Button
Read More
| by Arround The Web

Strncpy in C

In this guide, we have learned about the strncpy() function of the C language. It enabled us to use a single string in a code multiple times.

Share Button
Read More
| by Arround The Web

Isspace() Function in C

The isspace() function in C language is specifically designed to find out if the specified variable is a “space” itself or not.

Share Button
Read More
| by Arround The Web

For Loop in C

For loops allow for iteration of the specific program several times with every increment in their condition statements until it is required.

Share Button
Read More
| by Arround The Web

View and Access Threads in GDB

Comprehensive tutorial on how to use the gdb debugger in Ubuntu 20.04 Linux system and how to view and access the threads in gdb along with practical examples.

Share Button
Read More
| by Arround The Web

POSIX Open Function in C

Comprehensive tutorial on how to utilize and learn the POSIX “open()” function call in C to create, open, read, write, and do many things on the Linux files.

Share Button
Read More
| by Arround The Web

POSIX Socket in C

This article has explained and demonstrated socket programming on the client and server-side using the POSIX library of the C language.

Share Button
Read More
| by Arround The Web

Data Types in C

We use data type in C whenever we define a variable in our code. This is done to define what is the type of data that we’ll be using or storing information.

Share Button
Read More
| by Arround The Web

Strncat Function in C

Comprehensive guide on the core explanation of the concept of the string concatenation function as strncat() in the C language using two different examples.

Share Button
Read More
| by Arround The Web

Arrays in C

Tutorial on the concept of arrays in C by showing the methods for array declaration, its elements initialization, and how to access the elements in the array.

Share Button
Read More
| by Arround The Web

Arrow Operator in C

The arrow operator is used to point out the memory address of the different members of either the Union or the Structure. Arrow Operator in C is discussed.

Share Button
Read More
| by Arround The Web

Quick Sort Time Complexity

The quicksort program would consist of a swap() function, a pivot() function, a partition() function, and the quicksort function itself.

Share Button
Read More
| by Arround The Web

Setenv C Function

This article explains the setenv () function is used in C programming for adding or updating a variable in the environment, which is in the calling process.

Share Button
Read More
| by Arround The Web

clock_gettime C Function

This article explains the clock gettime () function retrieves the time currently shown by the clock identified by the clock id and writes it to the buffer.

Share Button
Read More
| by Arround The Web

Epoll 7 C Function

Guide on the use of epoll 7 C function to perform the socket programming and check the various file descriptors to determine if the input and output are viable.

Share Button
Read More
| by Arround The Web

Dlsym() 3 C Function

The dlsym() function goal is to find the address of a defined symbol specified in a DLL that has been made accessible via a dlopen() function call.

Share Button
Read More
| by Arround The Web

Bzero 3 C Function

Dynamic memory is filled with zeros to purge garbage entries. This article explains how the bzero 3 C function erases n-bytes data of the cache memory.

Share Button
Read More
| by Arround The Web

Msync() 2 C Function

Tutorial on the use of the msync() 2 function in the C language, its syntax, parameter, the options used within it and the errors we can get from its failure.

Share Button
Read More