Friday, June 22, 2012

Free bulk SMS Gateways service provider India



SMS Gateway is a channel of sending mobile sms messages. In case you are need of bulk sms service provides in India to promote your local business, you are actually looking for someone who sells SMS gateways. Depending on your needs you can find suitable affordable or free sms gateway for your business and using that you can send bulk sms to your clients. Once you have a sms gateway you can use it in any of your software project to send sms messages using SMS Gateway API than is usually available in variety of languages including php, asp, java etc.  Most sms gateway APIs would be open source and free once you own a sms gateway. Using these open source sms gateway API you can develop applications that can make email to sms possible. Through sms gateways you will be able send sms messages using your web browser or any sms gateways software that can be downloaded from the service provider. SMS gateway can enable you to send messages anywhere in India and on all popular service providers like Airtel, BSNL, idea and others.

In this post you can find some solutions related to mobile sms gateways in India that will help you to make right decision for your sms marketing campaign.

Free SMS Gateway India | Open Source SMS Gateway API

You can use http://www.alfredfrancis.in/alfasms-api/ to develop your own free sms gateway that would be powered by way2sms or 160by2. Now since sms are being sent through way2sms so you might get some advertisements in messages sent by you also you won’t be able to get a custom sender ID of your own. If you are a business owner you can hire any php developer to use the API mentioned above and develop a software or application with required sms sending capacities. That could work out as a very affordable solution for small business. Students who need sms gateways for their college projects can also find this api very useful.

Buy affordable and cheap SMS Gateway in India





Best sms gateway providers

In case you are looking for complete customization or some bigger project then you should definitely go for paid sms gateways





Here is list of some top bulk sms gateway service providers in India


www.mysmsmantra.com
www.smslink.in
www.bankofsms.com
www.mvaayoo.com/SMSGateway.html
www.smszone.in
www.gateway4sms.com  
www.smsgatewaycenter.com

Tuesday, June 19, 2012

Airtel SMS Pack booster plans 2012

For Airtel SMS pack plans and latest prepaid and postpaid booster packs for your state (Andhra Pradesh, Assam, Bihar & Jharkhand, Chennai, Delhi, Gujarat, Haryana, Himachal Pradesh, Jammu & Kashmir, Karnataka, Kerala, Kolkata, Maharashtra, Madhya Pradesh, Mumbai, North East ,Orissa, Punjab, Tamilnadu, UP (East), UP(West), West Bengal )


Visit official airtel site :
http://www.airtel.in/BestValue-Offers/Tamilnadu.html
and select your state from drop down menu present in the website.

Tuesday, June 12, 2012

C program to reverse a number | Source code and Algorithm explanation

In order to reverse a number you should first input the number and then extract the digits of number one by one. In order to extract digit you can use % operator which results in remainder of division operation. 13%10 is  3. Thus by doing mod 10 you can get rightmost digit of number. After extracting digit you can remove the same from number by storing result of /10 in integer variable. Eg 13/10 is 1.3 but on storing it in integer variable only 1 is stored.

In order to reverse a number using while loop in c language you must run the loop till the number is not 0 that is all the digits haven't been extracted. Assuming that you want reverse of number in variable called y (initial value of y should be zero), you should write y=y*10+extracted digit in while loop.

Consider test input of a=123,y=0

iteration 1
y=0*10+3=3, a=12
iteration 2
y=3*10+2=32, a=1
iteration 3
y=32*10+1=321 a=0

thus we get reverse of number in y.

Here is source code of c program to reverse a number


 int main()  
 {  
   int a;  
   printf("Enter a number :");  
   scanf("%d",&a);  
   int y=0;  
   while(a)  
   {  
     y=y*10+a%10;  
     a=a/10;  
   }  
   printf("\nreverse= %d",y);  
   getch();  
   return 0;  
 }  

11 Cloud computing projects, seminar topics and paper presentations ideas

In this post you can find some good ideas related to cloud computing that you can use in your computer science projects and mini projects. Same topics are good for seminars and paper presentation at engineering B. tech. level. You can find more such ideas from IEEE site by searching for cloud computing.



  • Cloud computing and associated security issues
  • Application of cloud computing in education
  • Impact of cloud computing in e-governance
  • Cloud computing in health sector
  • Comparison of cloud , cluster and grid computing
  • Challenges in cloud computing
  • Privacy issues in cloud computing
  • About cloud hosting and its cost
  • Cloud computing database
  • The Application of Cloud Computing in Military 
  • Future of cloud computing


Friday, June 1, 2012

C / C++ (CPP)/ JAVA Projects and Mini Projects | From Idea to Implementation of Source code

C Project Flipkart

Purpose of this post is to guide students at engineering, B.Tech, class 11-12 or even M.C.A. level and to enable them to develop best possible project in C /C++ or JAVA by converting their ideas to actual source code and working program. I will also provide ways by which you can actually do something fruitful through your projects and can help others by making source code of your c/c++ or JAVA mini project open source and available for free download.

C and C++ (cpp) are a popular computer programming language. The C language was given this name because there was a B programming language already and the B language led to the development of C Language. C++ is actually C with classes or C with Objects. C++ means one step ahead of C. ++ is actually traditional unary increment operator in c and cpp that increments the value of a variable by one. So CPP / C++ has all functionalities of C with some additional functionality.

JAVA is another popular object orient programming language developed by James Gosling. It is used widely in different electronic devices including popular mobile devices and operating systems. Main feature of java is platform independence.

Who is in need for downloading free C/C++ (CPP) or JAVA Projects Source Code?

·         Beginners in programming : To show and test their skills
·         Engineering Students: Those doing B.Tech in computer science (CSE), Information Technology (IT) and sometimes even electronics and communication engineers (ECE) are in need of C projects. Students need such projects for their final year 8th semester college work.
·         M.Tech Students
·         M.C.A. and B.C.A Graduates: For academic purposes
·         Class XI and XII CBSE Students: What they need in basic c projects programs for beginners that they can submit in school as assignment.
·         ICSE and ISC Class 9th 10th 11th 12th students looking for JAVA projects in bluej IDE for same reasons.
·         Companies developing actual product for clients.
Some issues related to C/C++/JAVA Project:
·         C/C++/JAVA Project and Mini Project Ideas and Topics. Purpose of any project is to solve any problem. So you must think of some existing problem and then work out a solution. Here are some good ideas that will help you to understand what I am talking about
o   Banking related C Project
o   Railway reservation
o   Library Management System
o   School management
o   Hospital Management
o   Telephone Directory
o   Periodic table Software
o   File Handling concepts
o   Airways Ticket Booking System
o   Share Market Simulation
o   Networking related C/C++ Project : Chat Engine,  Socket programming,  multiplayer game.
o   Simple Games as C or CPP mini project : Tic Tac toe, DOTS.
o   C/C++ Projects with GUI and graphical contents for better Interactions
o   C Projects related to UNIX environment: File search engine.
o   Cryptography
o   Employee details System
o   Database management related C/C++ Projects.
o   AWT or Swing related projects in JAVA
o   JAVA Projects with database connectivity
o   Remote method invocation in JAVA Projects
o   Android Application using JAVA
o   Embedded systems related projects in C language
o   C Microcontroller  related projects
o   C Projects Using OPENGL
o   8051 Related embedded system projects
o   Advanced JAVA projects on Data mining , Cloud computing, Mobile computing
o   J2ME or JSP projects. JDBC and SQL
·         Contents of a good project
o   Proper Source code
o   Projects with good documentation
o   Related Reports
o   Graphical Explanations
·         Free Download C/C++/JAVA Projects online: There are number of websites that can provide you 1000 free projects in these programming languages with source code and even related reports. It is always good to take inspiration and ideas from such resources but it isn’t a good idea to copy the whole project and submit as a pirated assignment. Remember you do project to learn and test your skills by solving some actual practical problem. However it doesn’t mean that you shouldn’t download zip projects from net to make improvements. Beauty of open source is that it allows several developers to contribute so if you want to work on some existing idea and to improve some existing piece of code then go ahead and do that.
·         Gaining knowledge for Projects: There are number of good books to help you gain better understating of concerned programming language. For c/c++ my advice would be Yashavant Kanetkar. And for java complete reference is a good option. There are number of good pdf tutorial s online to help you gain better understating of these programming languages.
·         Distributing Your project
o   Publish it at Google code
o   Publish it at scribd.com with proper license
o   Publish it at you blog
o   Offline distribution to juniors in your institute.

In case you are in need of some help in your c/c++/java project or mini-project you are invited to ping me at my google plus account. I will try my best to solve your problem or will at least refer you to someone who can help you in the regards.

Very common C Interview questions answers programs

In this post you can find some very general and basic commonly asked c interview questions programs solved. If you are properly trained in C language and have good knowledge of basic concepts of your programming in c course content then it would be easy for you to crack such cool interview question. For more help on C Interview questions you must check out this page which has huge collection of best c interview puzzles.


Sample program questions with code :


Write a program in C to display a message without using semi colon anywhere in program

Answer:
#include <stdio.h>
void main()
{
if(printf(”Hello”))
{}
}
We can write the printf inside while or switch as well for same result.


Write a c program to add two numbers without add operator?
Use two subtract operators together to work as add operator.
#include <stdio.h>
#include <conio.h>
int main(){
          int a=1,b=2,c;
          c=a-(-b);
          printf(“%d”,c);
          getch();
          return 0;

C Interview Questions | Common C pointer Interview question with solution

C Pointer/string interview questions answers


What is Output of following c snippet?
int main(){
   char *s="Abhas";
   printf("%s",s+s[1]-s[3]); 
   getch();
}
Answer:
bhas
Reason: In the above program role of %s is to display the string whose address is passed as an argument. This is how a standard printf statement works in c language. Now since we have passed s- s[1]+ s[3] as an argument therefore first value of this expression is evaluated. Here ‘s’ would refer to address of first character in string ‘s’. Since we are subtracting s[1] from s[3] characters at corresponding position (that are ‘a’ and ‘b’) would be subtracted.  On subtracting ‘a’ from ‘b’ (ASCII Value) we get 1 which is added to address of first character in ‘s’ (also referred as ‘s’). Now printf would get address of second character (address of first character + 1) as argument so it will display the string starting from second position.  Hence output is bhas.