C-Programming Flashcards
ASCII of A-Z
65-90
ASCII of a-z is
97-122
The output window of c prigram is
80 cols x 25 rows
What is expression in clang?
Any statement that has value associated with it
Assignment has associativity
Right to left
What must be the datype when % is used?
Both nume and denomi must be type int else error
Priority of relational operators
«=»= high
== != low
Return types of scanf function
0 -if no matching input scanned
-1 if any exit key clicked in terminal
>0 no of values successfully copied into their variables
Left shift of a is
a x 2^n
Right shift if a is
a/2^n
~a=?
-(a+1)
~a=?
-(a+1)
Size of operator takes input
Variable,expression,literal,datatype
in most compilers the evaluation of printf statement is from
right to left
Can the if condition be empty
No never it should not be empty