Answer Posted / prem
void main(){
int i;
for(i=1;i<10;i++)
{
console.write("prem");
continue;
c.w("hi");
}
}
It will print prem 9 times not print hi.
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
Give examples for reference types?
Is it possible to have a static indexer in c#?
How do destructors and garbage collection work in c#?
How can you prevent escaping on backslashes in C# with string definitions?
What is the relationship between a process, application domain, and application?
What are floating point numbers?
What is difference between array and collection in c#?
What is parsing?
How to add controls dynamically to the form using c#.net.
What is a decimal in c#?
What is namespace c#?
list the steps in code compilation in c#?
Explain the difference between a struct and a class?
Differentiate between the public and private ?
What is attribute c#?