CSGEEKSHUB

Menu
  • C Programming
  • cryptography

What are Static functions and where are they used?

admin September 16, 2020 C Programming No Comments
Static functions are similar to static variables. As we have discussed the scope and use of static variables in the previous tutorial, we will not explain those concepts here …
[Continue Reading...]

Returning multiple values from a function

admin September 16, 2020 C Programming No Comments
In C programming language, whenever we want to return multiple values from a function the first thing that comes to our mind is “Call by addresses” or “Call by …
[Continue Reading...]

Macros, Conditional Compilation and Preprocessor Directives in C/C++

admin August 16, 2020 C Programming No Comments
In C programming Preprocessing is a compilation step that occurs before the compiler compiles the C source code. In this step the C program is preprocessed and all the …
[Continue Reading...]

Difference Between void main(), int main() and void main(void) in C/C++

admin August 16, 2020 C Programming No Comments
The main function is the one where the program initiates its execution. All the other functions are called from the main function. But because of the feature “overloading” present …
[Continue Reading...]

C Program to remove duplicate elements from an array

admin August 10, 2020 C Programming No Comments
In this tutorial, we will write a simple c program to remove duplicate elements from an array. This c program works for both sorted or unsorted arrays. In order …
[Continue Reading...]

Difference between Structure and Union in C

admin July 26, 2020 C Programming No Comments
Structure and Union both are the user-defined data types where the user can store different data types in one at the same memory location in the form the one …
[Continue Reading...]

Scope of Global and Static variables in C/C++

admin July 25, 2020 C Programming No Comments
The scope of a variable means where that specific variable could be used. It means the inside the specific file or the files which are including that files. Global …
[Continue Reading...]

In which order function parameters are evaluated in C/C++?

admin July 20, 2020 C Programming No Comments
Let’s first discuss what we mean when we talk about functions and function parameters. Functions are referred to as a small block of code which can be called from …
[Continue Reading...]

C Program to change Endianness of data and bytes swapping example using Pointers

admin July 16, 2020 C Programming No Comments
Data endianness is quite straightforward and at the same time critical part when we are talking about the order in which our data is going to be stored. By …
[Continue Reading...]

C Program Compilation steps & Example with GCC Linux

admin July 15, 2020 C Programming No Comments
In this tuorial, we will see how different compilation steps of a C program and how to compile a C program using GCC in Linux enviornemnt. Running and compiling …
[Continue Reading...]

Posts navigation

1 2 Next




Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1 other subscriber

Recent Posts

  • What are Static functions and where are they used?
    What are Static functions and where are …
    September 16, 2020 No Comments
  • Returning multiple values from a function
    Returning multiple values from a function
    September 16, 2020 No Comments
  • Macros, Conditional Compilation and Preprocessor Directives in C/C++
    Macros, Conditional Compilation and Preprocessor Directives in …
    August 16, 2020 No Comments
  • Difference Between void main(), int main() and void main(void) in C/C++
    Difference Between void main(), int main() and …
    August 16, 2020 No Comments
  • C Program to remove duplicate elements from an array
    C Program to remove duplicate elements from …
    August 10, 2020 No Comments

Categories

  • C Programming
  • cryptography
CSGEEKSHUB Copyright © 2021.
Theme by MyThemeShop