/
Systems Programming, Unix  and C Programming Systems Programming, Unix  and C Programming

Systems Programming, Unix and C Programming - PowerPoint Presentation

pasty-toler
pasty-toler . @pasty-toler
Follow
441 views
Uploaded On 2016-08-16

Systems Programming, Unix and C Programming - PPT Presentation

Knowledge and use of tools and resources in a system standard libraries system calls debuggers the shell environment system programs and scripting languages Knowledge of file system Shell environment is rich with its capabilities options and configurability ID: 448833

system programs debugger programming programs system programming debugger knowledge section number environment sum source problems program debugging shell tools

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Systems Programming, Unix and C Program..." is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Systems Programming, Unix and C ProgrammingSlide2

Knowledge and use of tools and resources in a system: standard libraries, system calls, debuggers, the shell environment, system programs and scripting languages.

Knowledge of file system

Shell environment is rich with its capabilities, options and configurability.Why Unix? Written in C, source accessibilityWhy C? least abstracted, closer to hardware, memory management is direct through pointers.Three tools: a shell, a text editor, a debugger

Systems ProgrammingSlide3

A debugger relates an executable to the original variable names and source code so that a programmer can track execution

Lets go through the C programs and the debugging methodology discussed in

the chapter 1The debuggerSlide4

Log into timberlake or any

linux

system you may have access toTake your time to create the C programs in section, all of them, and familiarize yourself with the C programs and the systematic debugging processTo doSlide5

Knowledge of syntax of the languageHow to use the language: this is a skill/art

Break the problems into sub problems

Code and solve each sub problem independentlyStudy the program in section 1.4: given a number determine the sum of unique squares that sum up to that number.Given 13, 13 = 9 + 4 = 32 + 22

Program development (1.4)Slide6

Go through the programs developed.Work out the problems at the end of

the chapter.

Section 1.5 : Review of C