10 tools to teach & learn programming concepts and increase logical ability

Scratch: Scratch is the most popular tool that can be used to teach or learn programming. It provides an easy to use drag & drop GUI to the student with some blocks, these blocks can be arranged in a logical order to achieve a goal. Using...Read More>>

3 common mistakes in if statement

Look at the program given below int main() { char c = 'a'; if ( c == 'b' ); printf("%c", c); } Now guess the output of the above program? a b nothing will print Most of you will think of the 3rd option because you can see the...Read More>>