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
what are Access specifiers in C++ class? What are the types?
Why is c++ called oops?
What is the difference between a pointer and a link in c ++?
What is the best c++ ide?
Why the usage of pointers in C++ is not recommended ?
Explain method of creating object in C++ ?
total amount of milk produced each morning and then calculates and outputs the number of cartons needed for this milk , the cost of producing the milk and the profit from producing this milk.
Differentiate between late binding and early binding.
What is the use of volatile variable?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What is the difference between an enumeration and a set of pre-processor # defines?
What is enum c++?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
What are arrays c++?
How can you say that a template is better than a base class?