How do I run a program in notepad ++?
No Answer is Posted For this Question
Be the First to Post Answer
What does h mean in maths?
Specify some guidelines that should be followed while overloading operators?
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
What are the 3 levels of programming languages?
How to defines the function in c++?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Does c++ cost money?
What is the use of pointer in c++ with example?
Which sort does c++ use?
what is meaning of isa and hsa
Differentiate between late binding and early binding.
Generally variables are stored in heap memory. When he variables are created in stack?