Why do we use setw in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are punctuators in c++?
Can we inherit constructor in c++?
What and all can a compiler provides by default?
Which is better turbo c++ or dev c++?
How is memory managed in C++?
structure contains int, char, float how it behaves for big endian and little endian?
plz send me National informatics center paper pattern
why we cant create array of refrences
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?
Const char *p , char const *p What is the difference between the above two?
How can I learn dev c++ programming?
How does code-bloating occur in c++?