What is a unnitialised pointer?
No Answer is Posted For this Question
Be the First to Post Answer
sizeof- is it functioning statically or dynamically?
Why is c++ still popular?
What are the differences between malloc() and calloc()?
What's c++ used for?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Can comments be nested?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
Problem 5: Hero's Formula is A method for calculating the area of a triangle when you know the lengths of all three sides. Let a, b, c be the lengths of the sides of a triangle. The area is given by:A= pp-ap-b(p-c) | wherep= a+b+c2 | | Write a C-language code to calculate area of triangle using above method. Take the three lengths of the triangle from the user and display the area that your program calculates.
What are the new features that iso/ansi c++ has added to original c++ specifications?
What is the use of ‘using’ declaration?
What are friend functions?