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 |
Disadvantages of C language.
Why flag is used in c?
Tell us bitwise shift operators?
What is the use of printf() and scanf() functions?
What are data types in c language?
How can I invoke another program or command and trap its output?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
What is the size of empty structure in c?
What is the size of enum in c?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result