Programming for fun and profit

Programming for fun and profit Bjarne Stroustrup Texas A&M University http://www.research.att.com/~bs Stroustrup -CPSC 181 1 Overview • • • • Wha...
Author: Lewis Dickerson
0 downloads 0 Views 2MB Size
Programming for fun and profit Bjarne Stroustrup Texas A&M University http://www.research.att.com/~bs

Stroustrup -CPSC 181

1

Overview • • • •

What I like about being a computer scientist Programming language aims and ideals C++ C++0x

Stroustrup -CPSC 181

3

My

Background

• Århus: – childhood

• University of Århus: • MS in Math with Computer Science

• Cambridge University: •

PhD in Computer Science

Stroustrup -CPSC 181

4

Career • Bell Labs Computer Science Research Center • Texas A&M University • Awards – – – – – – – – – – – –

2008: Dr. Dobb's Excellence in Programming award. 2005: The William Procter Prize for Scientific Achievement from Sigma Xi (the scientific research society). 2005: IEEE Fellow. 2004: Member of the Texas Academy of Medicine, Engineering, and Science. 2004: Elected member of The National Academy of Engineering. 2004: The IEEE Computer Society's Computer Entrepreneur Award. 1996: AT&T Fellow. 1995: Named one of “the 20 most influential people in the computer industry in the last 20 years” by BYTE magazine. 1993: AT&T Bell Laboratories Fellow. 1993: The ACM Grace Murray Hopper award. 1993: ACM fellow. 1990: Named one of "America's twelve top young scientists" by Fortune Magazine. Stroustrup -CPSC 181

5

What I like – Code template bool is_palindrome(Iter first, Iter last) // first points to the first element, last to the last element { if (first

Suggest Documents