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 |
what is the function of pragma directive in c?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
write a c program in such a way that if we enter the today date the output should be next day's date.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Can we access the array using a pointer in c language?
Write a routine that prints out a 2-D array in spiral order!
What is an lvalue and an rvalue?
how to multiply two number taking input as a string (considering sum and carry )
How can I access a memory located at certain address?
write a function which accept two numbers from main() and interchange them using pointers?
print a "hello" word without using printf n puts in c language
What is the purpose of scanf() and printf() functions?