CodeSteps

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

C Programming – Pointer to Pointer

As we discussed in, Understanding of Pointers in C, pointers are address holders. Pointers point to an address of a variable, or a function or even it can point to another pointer. Through this article, we are going to discuss Pointer to Pointer concepts in C. A pointer to pointer points to an address of […]

C Programming – How to compare strings?

C library has string functions to compare whether the given strings are identical or not. strcmp library function This function takes two arguments, both are strings. Compare the strings and return 0 if the strings are identical; otherwise, this function returns a non-zero value. What is the meaning of non-zero value? When the first string […]

How to fix the error “Strict Standards: Accessing static property JCache::$_handler as non static” in cache.php on line 422 in Joomla 1.7.3?

“Strict Standards: Accessing static property JCache::$_handler as non static” error will get when you access the Site ater insatlling  Joomla 1.7.3. Just you can open the mentioned file and go to the line where you are getting the error, and modify the code. The following code steps will help to fix this error in cache.php on line […]

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, […]

Scroll to top