Differentiate between new and malloc(), delete and free() ?
No Answer is Posted For this Question
Be the First to Post Answer
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
which do you prefer C or Pascal?
what are bps & baud rates? differentiate these two?
How many types of errors are there in c language? Explain
What is the use of a semicolon (;) at the end of every program statement?
what will happen if you free a pointer twice after allocating memory dynamically ?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What are the Advantages of using macro
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Is fortran still used in 2018?
what is the most appropriate way to write a multi-statement macro?