Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
No Answer is Posted For this Question
Be the First to Post Answer
What is the arrow operator in c++?
What is c++ hash?
What is a block in c++?
What is a dangling pointer in c++?
What is the basic structure of a c++ program?
What is encapsulation in c++ with example?
What is else syntax 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?
How do I exit turbo c++?
What is the difference between equal to (==) and assignment operator (=)?
Discuss the possibilities related to the termination of a program before entering the mainq method?
Is dev c++ a good compiler?