Recent Posts

Welcome to Softech

We Hope you get knowledge from here.

Science is mother of Nature

So try to help Nature by Technology

Here you get

All the stuff that you want and we also provide you The things that you want

So

Stay with us

Give us

Your feedback

Sunday, 26 October 2014

TURBO c++ compiler for WIN7

Monday, 13 October 2014

TELECOME DATABASE

Wednesday, 8 October 2014

NEWS ALERT

last day for course drop is Thursday 13th November 2014

Wednesday, 1 October 2014

simplest palandrom program

#include<iostream>
int main(){
    int num,x,sum=0,temp;
    cout << "Enter a number: ";
     cin >> num;
    for(temp=num;num!=0;num=num/10){
         x=num%10;
         sum=sum*10+x;
    }
    if(temp==sum)
         cout << temp << " is a palindrome";
    else
         cout << temp << " is not a palindrome";
    return 0;
}

palandrom in c++

#include<iostream.h>
 #include<conio.h> 
int main() 
{ int length=0;
 int loop;
 int i,j;
 char arr[100], 
a[100]; 
cin>>arr;
 for (i=0; arr[i]!='\0'; i++) length++;
 loop=length;
 for(j=0; j<length; j++) 

a[j]=arr[loop-1]; 
loop--; 
}
 for (int k=0; k<length; k++)
 { if(arr[k]==a[k]) 
continue;
 else { cout<<"Not palandrome\n";
 getch();
 return 0; } 
} cout<<"Palandrome\n";
 getch(); 
return 0;
 }

database project proposal template

be original get the idea but don't try to copy it.

database project proposal template

data structure slides and handouts

Monday, 29 September 2014

DATABASE SLIDES

DATA BASE COURSE PLAN

Thursday, 25 September 2014

car war game project in c++

cpp program tic tac toe