What are preprocessor directives?
nic scientist exam
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is the size of empty structure in c?
How does the C program handle segmentation faults?
How can I find the modification date and time of a file?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
what is a non volatile key word in c language?
What is the right type to use for boolean values in c? Is there a standard type?
Can we declare a function inside a function in c?
Write code for atoi(x) where x is hexadecimal string.
Is c still used?