The type of variable a pointer points to must be the part of
pointer's definition so that:
Answer / karthiga
a)data types don't get mixed up when arithmetic is performed
on them
b)pointers can be added to one another to access structure
members
c)the compiler can perform arithmetic correctly to access
array elements
d)both a and c
| Is This Answer Correct ? | 12 Yes | 2 No |
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
What is the difference between the c++ & java?
Explain polymorphism? What r the types of polymorphism? pls give examples?
why to use operator overloading
Write a c++ program to display pass and fail for three student using static member function
What is a scope operator and tell me its functionality?
Describe what an Interface is and how it?s different from a Class.
which structured data type is not used in c++? 1.union 2.structure 3.string 4.boolean
can inline function declare in private part of class?
What is the types of inheritance?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is the concept of object oriented program?