Which command properly allocates memory
a) char *a=new char[20];
b) char a=new char[20];
c) char a=new char(20.0);
No Answer is Posted For this Question
Be the First to Post Answer
What is conditions when using boolean operators?
Does c++ have string data type?
write a program to insert an element into an array
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Write a C++ Program to check whether a number is prime number or not?
What is the v-ptr?
What does namespace mean in c++?
What do you mean by late binding?
Is sorted c++?
When should you use global variables?
What are the five basic elements of a c++ program?
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.