what is Structural oriented language?
give some example of this language.....?
structure oriented language means following a specific format for writing the program.... C++ is not structured oriented since we can declare the variables wherever we like before we use those ones.....
C,COBOL, FOXPRO are some of the structured oriented languages...
thank u
| Is This Answer Correct ? | 3 Yes | 3 No |
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
write a program for egyptian fractions in c?
What is structure packing in c?
What is the use of function overloading in C?
how to print this sereis 2 4 3 6 5..........?
How to implement variable argument functions ?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
Why c is called free form language?
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
why do we use pointer instead directly acessing the data?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
what is c