Understanding Python Iterables, Iterators and Generators
An Iterable is an object in Python which can return one of its member at a time, examples include list, str, tuple, dict, file etc. Iterables can be u...
November 15, 2017 3 min read
An Iterable is an object in Python which can return one of its member at a time, examples include list, str, tuple, dict, file etc. Iterables can be u...
November 15, 2017 3 min read
In this post, we'll walk over the Singly Linked List and its implementation using C language. In a singly linked list, each node in the list stores tw...
November 9, 2017 2 min read
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
I'll use this post to talk about creation & initialization of structures and also about the importance of using typedef while working with structures...
October 29, 2017 4 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