CH 2.B PROGRAMS/INSTRUCTIONS IN C Flashcards
Define c program.
c program is a collection of functions supported by c library
state the use of following in program:
main()
main is an function in program which states the line from which the execution of program begins. every program must has main function.
every program consist atleast one function in program and that function has to be ____.
main()
state the use of following in program:
{}
{ brace bracket. denotes start of the function main. } denotes end of the function main(). includes instructions
state the use of following in program: //
comment lines. non executable statements which are been ignored by the compiler. used for better understanding of the program by the compiler. helps in debugging and testing a program.
program within {} is called the ____.
body of function main()
main() body contains ___.
instructions to perform a task
true or false: comment lines can be nested
false
true or false: comment lines can be placed anywhere in the program
true
true or false: /* */ is used to write comment over one line.
false. // is used
____ must end with a semicolon
statements
____ is a executable function used for printing the output in the program.
printf()
___ ,___are a predefined function
printf()
scanf()
what is an predefined function?
functions which are already been written nd compiled.
state the use of following in program: /n
backslash character constant which prints the output on nextline
true or false: the statements in c must be in specific order/position
false. c program can be in any position/order.
c programs can be in uppercase, lowercase. but lowercase letters are for ___
symbolic constants
c programs must be in ___
lowercase
a c program must be written in ___ os and compiled in ___ compiler while executing a program in PC
msdos,dos
a program must be created and edited in any wordprocessing application in ___ mode.
non document
one must run a program file with ___ extension
.c
sucessful compilation will generate _____ of your program.
object file
while compiling a program, c compiler points out(reports) ___.
syntax errors
state the process of execution of the program.
- the program is been written. a program can be written and edited in any word processing document in non document mode.
- the program is been debugged
- program is been compiled
- object file of the program is been generated
- object file is been linked to execution file and file has .exe extension.
- . program is been run the program file now has .c extension. the program can be run in msdos file by typing the name.
write program for following: a basic c program
. refer txtbook
write program for following: a program stating the use of backslash character constants.
. refer txtbook
write program for following: a program using arithmetic operators (-,+,*,/,%)
. refer txtbook
write program for following: program using relational operators.
refer txtbook
write program for following: program using logical operators
refer txtbook
write program for following: program using increment and decrement operators
refer txtbook
write program for following: program using conditional operators
refer txtbook
write program for following: program using bitwise operators
refer txtbook
write program for following: program using sizeof() OR a program to show the memory size of int,float and char datatypes with subtypes like short,long…
refer txtbook
write program for following: to calculate the area of square, rectangle, circle by taking values from user.
refer txtbook
write program for following: performing integer arithmetic instructions
refer txtbook
write program for following: performing real arithmetic
refer txtbook
write program for following: performing mixed mode arithmetic
refer txtbook
write program for following: using symbolic constants
refer txtbook
write program for following: input the maximum temperature recorded in a day and calculate the avg temperature of the day
refer txtbook
write program for following: convert temperature (fahreinheit) into celcius
refer txtbook
write program for following: convert distance metres into cm
refer txtbook
write program for following: take input in ist and print the current est time
refer txtbook
write program for following: interchange 2 int values a,b
refer txtbook
write program for following: to calculate SI
refer txtbook
__ is denoted as post decrement of y. if value is 19. what would be the value.
y–
State whether the following are True or False
- Welcome” is a string constant.
- 24676 is a int constant
- you.2 is a valid variable
- an identifier must begin with character
- true
- true
- false .
- false variable
are foll valid variable names in c:
- _pq
- min_temp
- 3s
- add12
- no
- yes
- no
- yes
state whether the foll declarations are valid;
int a=”PQ”;
NO
state whether the foll declarations are valid;
p=12, float;
NO
state whether the foll declarations are valid; int a,b
NO SEMICOLON
state whether the foll declarations are valid; int a=10,n,r;
yes
float p,w,int r,s;
no
__ is bitwise and
refer txtbook
__ is bitwise or
refer txtbook
__ is bitwise exclusive or
refer txtbook
«_space;is a bitwise operator and does ___
refer txtbook
> > is a bitwise operator and does ___
refer txtbook
~ is a bitwise operator and does ___.
refer txtbook
state the output for foll:
txt book 39
refer txtbook
state the values in variables: txtbook 43
refer txtbook