char* and char[] : Char Array vs Char Pointer
In C/C++, Char is basically an array of characters. So, if we have something like below :- char c = "hello"; It means, we have an array "c" w...
November 1, 2017 2 min read
Posts with tag : Pointers
In C/C++, Char is basically an array of characters. So, if we have something like below :- char c = "hello"; It means, we have an array "c" w...
November 1, 2017 2 min read
While learning C language, one of the things that I noticed being mentioned in tutorials were using "Arrays and Pointers and interchanegbly". In this...
October 28, 2017 2 min read
Pointers with pre-increment and post-increment operators is one of the confusing topics for the new learners. In this post, I'll try to explain the co...
October 13, 2017 5 min read
C Pointers Pre and Post Increment Operators
October 12, 2017 5 min read