Is c the same as c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
How is new() different from malloc()?
What is meant by entry controlled loop? What all C++ loops are exit controlled?
What is the use of setfill in c++?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
Do class declarations end with a semicolon? Do class method definitions?
Can a list of string be stored within a two dimensional array?
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
write the code that display the format just like 1 2 1 3 2 1 4 3 2 1 5 4 3 2 1 6 5 4 3 2 1
Define a nested class. Explain how it can be useful.