programming languages Online Quiz - 69
Description: programming languages Online Quiz - 69 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond?
What is the last index number in an array of 100 chars?
What header file is needed for the function exit()?
SELECT ABS(-15) "Absolute" FROM DUAL;
SELECT CEIL(15.7) "Ceiling" FROM DUAL;
SELECT FLOOR(15.7) "Floor" FROM DUAL;
SELECT REPLACE('JACK and JUE','J','BL')FROM DUAL;
SELECT MONTHS_BETWEEN TO_DATE('02-01-1995','MM-DD-YYYY'),TO_DATE('01-01-1995','MM-DD-YYYY') ) FROM DUAL;
SELECT POWER(3,2) FROM DUAL;
SELECT TO_CHAR( ADD_MONTHS(to_date('07-JUN-1994,'DD-MON-YYYY'),1), 'DD-MON-YYYY') FROM employees WHERE last_name = 'Baer';
SELECT SIN(30 * 3.14159265359/180) FROM DUAL;
SELECT MOD(11,4)FROM DUAL;
SELECT SQRT(25) FROM DUAL;
SELECT LENGTHB ('CANDIDE') FROM DUAL;
int i=3, j=4; if( i==3 || j++ ) { printf("%d\n",j); } This will print: 5
It is possible to call a macro recursively.
We can portably use the fflush(stdin); statement to clear the remaining characters in input stream.
conio.h is an ANSI standard header file.
conio.h is an ANSI standard header file.
In declaration of function parameters, int a[5] is equivalent to int *a.