Click here to Skip to main content
15,917,610 members

Comments by manishmishra11june (Top 18 by date)

manishmishra11june 1-Jul-16 2:32am View    
sorry but i saw over internet and books that we can add 2 conditions in a loop at a time... i am just doubtfull about the syntax is correct or not
manishmishra11june 1-Jul-16 2:22am View    
did i wrote the syntax in correct manner the
for (i = 0, j = mid; i < arr.Length - 1, j < arr.Length; i++,j++)

erros is coming here, assing for ; expected and , invalid term
manishmishra11june 1-Jul-16 2:13am View    
oohh sorry for that, but can you please help me for that question
manishmishra11june 28-Jun-16 21:15pm View    
oohh sorry, but can you please help me out with this problme
manishmishra11june 28-Jun-16 20:56pm View    
Deleted
I tried this but it didnt worked

class Program
{
static void Main()
{
int i,n;

//Enter Number of elements in an array
Console.WriteLine("Enter no array elements : ");
n = Convert.ToInt32(Console.ReadLine());



// Enter elements to an array
int[] arr = new int[n];
Console.WriteLine("Enter the array elements : ");
for(i=0; i