0% found this document useful (0 votes)
77 views

New C Programming

This document is a textbook on C programming that covers topics like variables and constants, input/output functions, operators, statements, functions, arrays, pointers, file I/O and additional topics. It is authored by Amio Galib Chowdhury of the Department of Physics at the University of Dhaka and includes 10 chapters and 2 appendices to provide an overview of important C programming concepts and library functions.

Uploaded by

uallnnwx
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views

New C Programming

This document is a textbook on C programming that covers topics like variables and constants, input/output functions, operators, statements, functions, arrays, pointers, file I/O and additional topics. It is authored by Amio Galib Chowdhury of the Department of Physics at the University of Dhaka and includes 10 chapters and 2 appendices to provide an overview of important C programming concepts and library functions.

Uploaded by

uallnnwx
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

C Programming

Amio Galib Chowdhury Department of Physics University of Dhaka

CONTENTS
Chapter 1 Variables and constants Chapter 2 Basic output: printf() Chapter 3 Basic input: scanf() Chapter 4 Operators Chapter 5 Statement Chapter 6 Function Chapter 7 Array Chapter 8 Pointer Chapter 9 File I/O Chapter 10 Additional topics APPENDIX A APPENDIX B

Summary Important Library functions

Amio Galib Chowdhury

Page

CHAPTER 1: VARIABLES AND CONSTANTS


Variables: A variable in C language is a designated memory space, having a name assigned to it. Variables are named places in computers memory that are used to store data.

Amio Galib Chowdhury

Page

You might also like