C,c++, Java is all are structural oriented or procedure
oriented language..?
Answers were Sorted based on User's Feedback
Answer / v.prasad
c is structural oriented language c++ is structural &
procedure oriented language bt java is procedure oriented
language
| Is This Answer Correct ? | 8 Yes | 1 No |
c,c++ are structural&procedure oriented languages java is
object oriented
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / srika
C is a Structured & procedure lang
C++ is a procedure lang
java is a procedure lang(can be acceptable)
so all are procedural lang
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the parts of c program?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
What is sizeof array in c?
Who invented bcpl language?
How do you redirect a standard stream?
Describe the difference between = and == symbols in c programming?
Can i use “int” data type to store the value 32768? Why?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the significance of c program algorithms?
What is the right type to use for boolean values in c?
Is c procedural or functional?