what is the difference between procedure oriented and object
oriented progaming language
Answer / shrikantauti
POP includes procedures, where in OOP everything created is an object.
object is an instance of all class, which is used to call the methods with the help of periods.
OOP is any how better than POP.
| Is This Answer Correct ? | 0 Yes | 1 No |
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
how to find that no is int or float?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
What is string length in c?
What are keywords c?
WAP to find that given no is small or capital
write a program that finds the factorial of a number using recursion?
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
Explain function?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the difference between static and global variables?