For example string Str ="Csharpcorner"
I need every 3rd letter as output
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vignesh ManiPosted Jan 4, 2017, 3:18 PM
{
//Your code goes here
string str="Welcome To All";
for(int i=2;i
Console.WriteLine(str[i]);
}
Console.WriteLine("Hello, world!");
}
Bikesh SrivastavaPosted Jan 4, 2017, 1:43 PM
Amit GuptaPosted Jan 4, 2017, 12:52 PM