The arrays are implicitly treated as pointers. And the strings are array of characters terminated by NULL character. Hence a pointer to cha...
Read More
Showing posts with label For statement. Show all posts
Showing posts with label For statement. Show all posts
THE LIST ADT
List is an ordered set of elements. The general form of the list is A1, A2, A3, ..... ,AN A1 - First element of the list AN - Last elem...
Read More
For statements in C programming language
For statement for (expr1; expr2; expr3) statement is equivalent to expr1; while (expr2) { statement expr3; } except for the behavi...
Read More
Subscribe to:
Posts (Atom)