₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,092 members, 8,420,278 topics. Date: Thursday, 04 June 2026 at 03:31 PM

Toggle theme

Gatecrack's Posts

Nairaland ForumGatecrack's ProfileGatecrack's Posts

1 (of 1 pages)

EducationUnderstanding The Basic Building Blocks Of C Language by gatecrack(op): 3:46pm On Jul 14, 2015
To understand and learn the C programming language you have to first understand the basic building blocks of C language which includes Tokens, Semicolons, Comments, White spaces etc.

>> Tokens: In C programming language 6 types of tokens are available that are

1). Keyword
2). Identifier
3). Constant
4). String
5). Operator
6). Special Symbols

>> Semicolons are used for the termination of the Statement

>> Comments are added in C language in between these symbols /* */

>> White Spaces are ignored by C compiler.

For Further reading check: http://gatecrack.org/basic-building-blocks-in-c-programming-language

Thanks
EducationTree Traversal Techniques In Data Structure by gatecrack(op): 10:08am On Jul 10, 2015
In data structure tree traversal techniques are of three types

1). Inorder Traversal
2). Preorder Traversal
3). Postorder Traversal

In Inorder Traversal left subtree is traversed first in inorder fashion, then root node and at last right sub tree is processed
In Preorder traversal root node is traversed first then left sub tree in inorder fashion and at last right sub tree in inorder fashion
In Post order traversal root is traversed at last first left subtree is traversed, then right subtree and at last root is traversed

Ref: http://gatecrack.org/tree-traversal-techniques-in-data-structure-with-example/

1 (of 1 pages)