Why is c faster?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesn't C have nested functions?
What is the c value paradox and how is it explained?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
What is the hardest programming language?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
how do you execute a c program in unix.
list the no of files created when c source file is compiled
List the difference between a 'copy constructor' and a 'assignment operator' in C?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.