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 |
is it possible to create your own header files?
Can a pointer point to null?
How to removing white spces in c programming only bu using loops
name the language for writing c compiler?
Explain the priority queues?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Is array name a pointer?
Why is c called "mother" language?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
int x=5; printf("%d%d%d",x,x<<2,x>>2);
Explain what are the different file extensions involved when programming in c?
What is the difference between realloc() and free()