what is object oriental programing?
Answer / nirmal kumar tailor
Object means instance of the class.
object oriented means you can access all the class member
with the help of class object so this is called object
oriented language.
Is This Answer Correct ? | 4 Yes | 1 No |
Why is C language being considered a middle level language?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
write a function which accept two numbers from main() and interchange them using pointers?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
swap 2 numbers without using third variable?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is a floating point in c?
Why does not use getgh(); and <conio.h> in c language.
Why cd or dvd are round why not square.
What does & mean in scanf?
Is malloc memset faster than calloc?