2
Answers

Read incoming SMS of Mobile connected to PC using C#

Ali Hassan

Ali Hassan

12y
5.1k
1
I want to connect a mobile phone with PC and an application which I have to develop will help me to read incoming sms from mobile phone.
I can send sms using application successfully But I have to read sms from mobile inbox or incoming SMSs.
Regards
Ali Hassan

It would be preferable to send me code for that.
At my id bajwa013@gmail.com

I have attached code too.
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
There's a standard algorithm for doing this in C programming - see http://www.geeksforgeeks.org/archives/3133

The C# translation would be:

using System;

class Program
{
    static void Main()
    {
       int[] arr = {3, 2, 7, 10};
       Console.WriteLine("Maximum sum of array 1 is {0}", FindMaxSum(arr));
       int[] arr2 = {3, 2, 5, 10, 7};
       Console.WriteLine("Maximum sum of array 2 is {0}", FindMaxSum(arr2));
       Console.ReadKey();
    }

    static int FindMaxSum(int[] arr)
    {
      int n = arr.Length;
      int incl = arr[0];
      int excl = 0;
      int excl_new;
 
      for (int i = 1; i < n; i++)
      {
         /* current max excluding i */
         excl_new = Math.Max(incl, excl);
 
         /* current max including i */
         incl = excl + arr[i];
         excl = excl_new;
      }
 
      /* return max of incl and excl */
      return Math.Max(incl, excl);
    }
}