How does a function pointer returns a function pointer?
Answer Posted / guest
A function pointer can return a function pointer using
typedef.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is difference between private and static constructor?
What is escape character in c#?
Is c sharp free?
What is string interpolation in c#?
What is routing in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
Where value types are stored in c#?
What is javascriptserializer c#?
How many bits is int32?
What is Web.config?
What is ildasm and obfuscator in net?
What is static classes in c#?
Can you use foreach iteration on arrays in c#?
Why can't we use a static class instead of singleton?
Explain the use of virtual, sealed, override, and abstract method?