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
How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?
What does it mean to declare a member function as static?
What are the two types of comments, and how do they differ?
List down the guideline that should be followed while using friend function.
Is c++ still in demand?
Where Malloc(), Calloc(), and realloc() does get memory?
What is c++ runtime?
You want to link a c++ program to c functions. How would you do it?
Explain the uses oof nested class?
What is a far pointer? where we use it?
Why is c++ difficult?
Why cstdlib is used in c++?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What are pointer-to-members? Explain.
What is split a string in c++?