Hi i need to Acess a variable "int Intval" in the below
mentioned code .How to Access it guys i am waiting for your
reply
Answer Posted / ved prakash
using System;
class ved
{
public static void Main()
{
int x,y,z;
x=3;
y=6;
z=0;
z=x+y;
Console.WriteLine(z);
Console.ReadLine();
}
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do I run c++?
What does n mean in c++?
Is python written in c or c++?
How to declare an array of pointers to integer?
Are there any special rules about inlining?
What is the use of namespace std in C++?
What is a lambda function c++?
Explain how to initialize a const data member.
When should overload new operator on a global basis or a class basis?
What is null and void pointer?
Can java be faster than c++?
Is java easier than c++?
What are the comments in c++?
Explain container class.
How should a contructor handle a failure?