CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Author : Malin

C Programming – Understanding Unions in C

Unions are another useful types in C language, where all of it’s members starts at the same location in memory. That means, all members of the Union, have the same address; whereas, members in Structures have different addresses. This unique quality of the Unions, saves the memory usage. Defining an Union in C By using, […]

Windows – SC Command – List all Services

Windows Services are the Applications which are running in the background to do specified operations. Windows provides Graphical User Interface to manage the Services. And also it provides some command line tools to manage the Windows Services from the command prompt. Through this Article, we are going to discuss one of the command line tool; […]

Scroll to top