What problems might the following macro bring to the application?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between new() and malloc()?
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,
How do I exit turbo c++?
What's the hardest coding language?
If you don’t declare a return value, what type of return value is assumed?
Can you pass an array to a function in c++?
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?
When should we use multiple inheritance?
What is private public protected in c++?
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
How do you import payscale data from non SAP to SAP?is it through LSMW or any other way is there?
Explain the difference between abstract class and interface in c++?