Question
class UnsafeCode
{
unsafe static void Main()
{
int m = 10;
int *mptr = &m;
int **ptr = &mptr;
int n = 20;
int *nptr = &n;
int **prt = &nptr;
m = **prt + *nptr;
n = *mptr* **prt;
Console.WriteLine(n + " " + m);
Console.ReadLine();
}
}
a.
20 200
b.
40 200
c.
800 40
d.
40 800
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What will be the output of the given code?
Similar Questions
Discover Related MCQs
Q. Consider an integer pointer *a.
++*a will increment ___________ while *a++ will increment __________
View solution
Q. How many values can be returned from a function simultaneously using pointers?
View solution
Q. Among the given pointer which of following cannot be incremented?
View solution
Q. Which among the following is referred as an array of pointers?
View solution
Q. Which of the following job is done by the instruction ++*p for an integer pointer p?
View solution
Q. After incrementing a float pointer ptr by 1 it would be incremented by __________
View solution
Q. What is the size of a char pointer?
View solution
Q. Choose the correct statement among the given statements?
View solution
Q. Which among the given operators is referred to as ‘address of’ operator?
View solution
Q. Pointer variable is used to hold the _________ of the variable.
View solution
Q. Select the type argument of open constructed type?
View solution
Q. Which of these is an correct way of defining generic method?
View solution
Q. Why are generics used?
View solution
Q. Which of these methods gives the full URL of an URL object?
View solution
Q. Which of these classes is used to create servers that listen to either local or remote client programs?
View solution
Q. Choose the exceptions generated by the GetResponseStream() method defined by WebRequest:
View solution
Q. Which of these classes is used for operating on the request from the client to the server?
View solution
Q. Select the properties related to the network errors generated by WebException:
View solution
Q. Choose the exceptions generated by the GetReponse() method defined by WebRequest:
View solution
Q. Choose the exceptions generated by the Create() method defined by WebRequest:
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!