asdasd

Sunday, May 16, 2010

Airplane Oops! Situations

Better on the ground than in the air


Short of the actual crash, most of the accidents depicted here occurred without loss of human life, and thus can be described as "Oops". There is a site "Aviation Safety" where many troublesome situations are listed and discussed, with full background information for each. What you will see here is a collection of images from various such occasions, sent to us by readers who found them or even witnessed the events.
On the Ground
The hazards start while the plane is still on the runway. Most of the time they are results of the "reckless driving" of the taxiing & service vehicles.

Thursday, May 13, 2010

Sams Teach Yourself C in 21 days

Programming C# - O'Reilly

Microsoft Visual C#™ .NET (Core Reference)

Secure Programming Cookbook For C And C++

Microsoft Press - Inside C# - 2nd Edition

Sams Teach Yourself Cobol In 21 Days - 2nd Edition

Sams Teach Yourself Visual C++ In 12 Easy Lessons


Sams Teach Yourself Visual C++ 5 in 24 Hours

Syngress C# for Java Programmers

Monday, May 10, 2010

I thing there have an error in vi editor...

Double click any word to get the definition of that word
#include< ncurses.h >
int main()
{
      initscr();
      int y,x;
      getmaxyx(stdscr,y,x);
      int i=0;
      int j=0;
      


Sunday, May 9, 2010

IPE 2010 1st Semester Final Paper 2b Ncurses My Answer


//IPE 2010 1st Semester Final Paper 2(b)
//Naduntw.blogspot.com

#include< ncurses.h >

int main()
{
      initscr();                       //Initialize Screen
      start_color();                //Initialize Colors
      init_pair(1,2,4);             //Define Color Pair 1
      init_pair(2,6,5);             //Define Color Pair 2
      init_pair(3,3,7);             //Define Color Pair 3
      init_pair(4,5,2);             //Define Color Pair 4
      init_pair(5,7,3);             //Define Color Pair 5
      int x=16;              //Declaring and assigning Start Column value  
      int y=11;              //Declaring and assigning Start Row value
      attrset(COLOR_PAIR(1));  //Make current color scheme to Pair 1
      for(;y<17;y++,x--)
      {
            move(y,x);

Wednesday, May 5, 2010

 
back to top