what is the difference between structural,object
based,object orientd programming languages?
Answer Posted / himanshu singh
In structural focus is more on procedures whereas in oject based focus is more on data..
one mr thing.. structural follows top down approach whereas object oriented follows bottom up approach
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
what is the format specifier for printing a pointer value?
Why should I prototype a function?
What is the scope of static variable in c?
If fflush wont work, what can I use to flush input?
What is #define size in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Explain the difference between null pointer and void pointer.
Explain what is dynamic data structure?
Explain what is the use of a semicolon (;) at the end of every program statement?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What will the preprocessor do for a program?
Explain what header files do I need in order to define the standard library functions I use?
Is a house a shell structure?
Why C language is a procedural language?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer