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 : Arrays
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