What does I ++ mean in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What c++ library is string in?
What is difference between n and endl in c++?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
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 does #define mean in c++?
what is difference between internet and Internet?
12 Answers College School Exams Tests, Microsoft, MIT, TCS,
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
What is the stack?
Can inline functions have a recursion? Give the reason?
How are virtual functions implemented in c++?
Name some pure object oriented languages?
You run a shell on unix system. How would you tell which shell are you running?