Get Started

Can anyone suggest me good books for developing logic and algorithm approach to problems ?

Thanks in Advance !!

Start using good books on Datastructure and algorithm

Which books plz specify names that are easy to understand for beginner but yet effective .

1 Like

@nova9 You can try book on algorithms on by Cormen.
Learning algorithms from topcoder and geeksforgeeks would also be of immense help.

1 Like

Thanks to all, once again.

this is a very good book …
Data Structures and Algorithms Made Easy: Data Structure and Algorithmic Puzzles, Second Edition
Author: Narasimha Karumanchi…
directly going to books like cormen will be difficult for you in the beginning …so go through the above mentioned karumanchi book and then cormen and main focus should be implementation of the algorithms you learnt … I hope one day you will be great coder …All the best :smiley:

#include<stdio.h>
int main()
{
int arr[] = {1, 2, 3, 4, 7, 98, 0, 12, 35, 99, 14};
printf(“Number of elements :%d”, sizeof(arr));
return 0;
}

what is the ans and how explain it.