What is the OOPs concept?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we use header files in c?
What is the difference between macros and inline functions?
What is the use of getch ()?
Explain bit masking in c?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is atoi and atof in c?
What are the c keywords?
Write a C program that reads a series of strings and prints only those ending in "ed"
What is bss in c?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
What are compound statements?