Which bit wise operator is suitable for turning off a particular bit in a number?
No Answer is Posted For this Question
Be the First to Post Answer
what kind of projects are suitable for c and c++
Is there any problem with the following: char *a=NULL; char& p = *a;?
What is atoi 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?
What you know about structures in C++?
0 Answers Agilent, ZS Associates,
Can we use pointers in c++?
What is a dynamic binding in c++?
What is the use of data hiding?
Comment on c++ standard exceptions?
In how many ways we can initialize an int variable in C++?
Explain this pointer?
What is a float in c++?