जरूरी है और सॉफ्टवेयर बनाने के लिए कंप्यूटर की जानकारी | Introduction t...
The ‘goto’ keyword Use of ‘goto’ takes the control where you want. Though it is easy to use, it should be avoided. The big problem with ‘goto’ is that we can never be sure how we got to a certain point in our code. Functions A function is a self-contained block of statements that performs a task of some kind. Every C== program can be thought of as a collection of these functions using a function is like hiring a person to do a specific job for you. The following points can be noted : (i) Any C program contains at least one function. It must be main ( ). (ii) If there are more than one functions in a program, then one must be ma...