CodeSteps

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

Author : Malin

OpenGL – Open Graphics Library – An introduction

OpenGL (Open Graphics Library) is an industry standard API used to render 2D and 3D Vector graphics. It is so popular because, it is a portable, cross-language and cross-platform Application Programming Interface written in C language. OpenGL was initially developed by SGI (Silicon Graphics Inc.,) and released to the market in the year 1992. This […]

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