Answer Posted / asif karim
#include <stdio.h>
#include<iostream>
using namespace std;
void main()
{
const int var=10;
int a;
a=*(int* )& var=20;
cout<<a;
}
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
Does std endl flush?
What is an associative container in c++?
Why can templates only be implemented in the header file?
What are c++ data types?
What are mutator methods in c++?
Is java as fast as c++?
Explain static and dynamic memory allocation with an example each.
What is c++ 11 and c++ 14?
What is an operator in c++?
Can turbo c++ run c program?
Can a program run without main function?
What are the restrictions apply to constructors and destructors?
What are the differences between malloc() and calloc()?
How do you flush a buffer in c++?
What is the function to call to turn an ascii string into a long?