#CPP

3 writings

Journey of Coder to Developer

This blog post explores the critical distinction between coders who copy-paste solutions and developers who understand core principles. The author argues that mastering fundamental languages like C and C++, combined with logical thinking over library dependencies, is essential for transitioning from a coder to a true programmer.

3 min read 533 words

Pointers what is your address dude

Pointers are fundamental to C and C++ programming, allowing you to work with memory addresses and share data efficiently. This guide explains pointer basics with practical examples, showing how to declare pointers, access values, and understand the difference between a variable and its address.

2 min read 343 words

Data Structure through C++

This blog post reviews 'Data Structure Through C++' by Yashvant Kanetkar, a highly recommended resource for anyone learning data structures. The book makes complex concepts accessible while maintaining international standards, making it essential reading for computer science students and professionals.

2 min read 233 words