whether itis a structured language?
C is a structured language .....
proof:
there are certain rules to be followed for writing C programs
that is: 1) we must declare the variables used in the program after the main function itself. 2) after the variable declaration only we must enter the clrscr() option if we want.. 3) C follows only TOP to BOTTOM approach 4) all possible codes are been put as a subroutines or functions for every time usage
this proves C is a Structured language...
thank u
| Is This Answer Correct ? | 7 Yes | 0 No |
How can I convert integers to binary or hexadecimal?
how to print this sereis 2 4 3 6 5..........?
Is c# a good language?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Is there any book to know about Basics of C Language?
What is a volatile keyword in c?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
Explain how can I open a file so that other programs can update it at the same time?
Is register a keyword in c?
What are valid operations on pointers?
can we access one file to one directory?
Why doesn't C support function overloading?