What are the advantages of using new operator as compared to the function malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
write C code to reverse a string such that if i/p is "abc defg hij klmno pqrs tuv wxyz" and the o/p should be "cba gfed jih onmlk srqp vut zyxw"
Why is c so powerful?
difference between semaphores and mutex?
Why the use of alloca() is discouraged?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
why array index always starts from zero??
Differentiate between new and malloc(), delete and free() ?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What are the 4 types of organizational structures?
can you change name of main()?how?