14
Powerpoint Templates ARVIN santos buendia

Introduction to turbo c

Embed Size (px)

DESCRIPTION

For computer LT 4th quarter

Citation preview

Page 1: Introduction to turbo c

Powerpoint TemplatesARVINsantosbuendia

Page 2: Introduction to turbo c

Powerpoint Templates

OBJECTIVES

Page 3: Introduction to turbo c

Powerpoint Templates

INTRODUCTION TO TURBO-C

Page 4: Introduction to turbo c

Powerpoint Templates

INTRODUCTION TO TURBO-C

Page 5: Introduction to turbo c

Powerpoint Templates

TURBO-C CODE STRUCTURECOMMENTS

PREPROCESSOR DIRECTIVE

BEGIN BLOCK OF main( ) FUNCTION

END BLOCK OF main( ) FUNCTION

VARIABLE DECLARATION

FUNCTION NAME

BODY OF THE PROGRAM

Hello Arvin_ _Hello SUPERMAN

_

Page 6: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTION

printf( ); – is used to write information on the screenprintf(<format string>);<format string> is a string that begins and ends with double quotes “”printf(“ARVIN santos BUENDIA”);

ARVIN santos BUENDIA_ _

Page 7: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTIONAn ESCAPE SEQUENCE that starts

with the escape code “\”The backslash indicates that the characters that will follow is NOT TO BE PROCESS in the ORDINARY WAY ESCAPE SEQUENCE\n new line\t tab\” double quote\\ backslash

Page 8: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTIONprintf(“arvin \

nSUPERMAN”);arvin_ __SUPERMAN_

Page 9: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTIONprintf(“arvin \n

SUPERMAN”);arvin_ __SUPERMAN__

Page 10: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTIONprintf(“arvin \

tSUPERMAN”);arvin_ _ SUPERMAN__

Page 11: Introduction to turbo c

Powerpoint Templates

SCREEN OUTPUT FUNCTIONprintf(“arvin “

SUPERMAN”);

arvin_ _

START OF THE FORMAT STRING

END OF THE FORMAT STRING

SYNTAX ERROR NEXT CODE

Page 12: Introduction to turbo c

Powerpoint Templates

ESCAPE SEQUENCESTART OF THE FORMAT

STRING

SCREEN OUTPUT FUNCTIONprintf(“arvin \"

SUPERMAN”);

arvin_ _“SUPERMAN_END OF THE FORMAT STRING

NEXT CODE

Page 13: Introduction to turbo c

Powerpoint Templates

ESCAPE SEQUENCESTART OF THE FORMAT

STRING

SCREEN OUTPUT FUNCTIONprintf(“arvin \\

SUPERMAN”);

arvin_ _\SUPERMAN_END OF THE FORMAT STRING

NEXT CODE

Page 14: Introduction to turbo c

Powerpoint Templates

ASSESSMENTprintf(“\\di nga ako nagpaputok\n\n”);printf(“nun \nbagong taon… \nbaket\n???”);printf(“\nkasi\t sumasabog na ang \”puso ko\” sa’yo”);

\ di nga ako nagpaputok_ ___nun __bagong taon… __baket__???__kasi_ _sumasabog na ang _“puso ko_“ _sa’yo_