My Linux Stuff - Complete Blog For Linux Articles

My Linux Stuff - Complete Blog For Linux Articles

A Website For Complete Linux OS,Step by Step linux Installtion, Linux Tips and Tricks and Linux Stuff and so on... Connect and sharing here....

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

TOP 50 ENGINEERING COLLEGES IN INDIA 2014

This below survey was taken many form many colleges in India. These Top 50 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good.

Top 10 Government Engineering Colleges in India

Top 10 Government Engineering Colleges in India

These Government Engineering Colleges in India are really good for all kind of stuff like Education , research , Placement and New Innovation Ideas etc... But Getting seat in these colleges are heavy competition in students .....

Top 10 Colleges In India 2014

Top 10 Colleges In India 2014

Indian Institute Of Technology Delhi,Indian Institute Of Technology Bombay,Indian Institute Of Technology Kanpur,Indian Institute Of Technology Madras,Indian Institute Of Technology Kharagpur,Indian Institute Of Technology Roorkee,University Of Delhi,Indian Institute Of Technology Guwahati,University Of Calcutta,University Of Mumbai, National Institute Of Technology,Trichy.

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

2014 LATEST SURVEY TOP RANKING ENGINEERING COLLEGES IN INDIA

This below survey was taken many form many colleges in India. These Top 100 Engineering Colleges in India have Good Infrastructure, Good Environment, Educations , Staff, Placement , Research Activities and other Facilities are good. If you want to do Engineering as your dream and try out these colleges

Subscribe Now!

Enter your email address:

Showing posts with label Program. Show all posts
Showing posts with label Program. Show all posts

Wednesday, September 12, 2012

C programming questions and answers

C programming questions and answers

In computing, C is a general-purpose programming language initially developed by Dennis Ritchie between 1969 and 1973 at Bell Labs. 

More about C languages visit the below link 

C programming questions and answers

C program examples

C programming Tutorials

Friday, January 6, 2012

Palindrome Program in C#

How to Write a Palindrome Programme using C# ? 

using System; 
using System.Collections.Generic; 
using System.Text; 

namespace ConsoleApplication1 
{ 
class Program
{
 static void Main(string[] args) { 
string str=string .Empty ; 
Console.WriteLine("Enter a String"); 
string s = Console.ReadLine(); 
int i = s.Length; 
//we can get the Length of string by using Length Property 

for (int j=i -1; j >= 0; j--) 
{ 
str = str + s[j ]; 
} 
if (str == s) 
{ 


Console.WriteLine(s + " is palindrome"); 


} 
else 
{ 
Console.WriteLine(s + " is not a palindeome"); } 

Console.WriteLine(str); 

Console.Read(); 





}
}
 } 


OutPut: Enter a String 
MadaM 
Madam is palindrome 

Wednesday, December 22, 2010

Disable-Form-Submit-on-Enter-Key-Press Link

The post Enter Key as the Default Button describes how to set the default behaviour for enter key press. However, sometimes, you need to disable form submission on Enter Key press. If you want to prevent it completely, you need to use OnKeyPress handler on <body> tag of your page.
The below link show how to Disable-Form-Submit-on-Enter-Key-Press Link
http://www.bloggingdeveloper.com/post/Disable-Form-Submit-on-Enter-Key-Press.aspx


Disable-Form-Submit-on-Enter-Key-Press Link

Related Posts Plugin for WordPress, Blogger...