True or false: If you continuously increment a variable, it
will become negative?
1) True
2) False
3) It depends on the variable type
Answer Posted / k.kavitha
2) false
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is the difference between typedef and #define?
what is the difference between 123 and 0123 in c?
Can you please explain the scope of static variables?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is difference between constant pointer and constant variable?
What is the benefit of using #define to declare a constant?
Explain enumerated types.
What is a structural principle?
List the difference between a "copy constructor" and a "assignment operator"?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
When is a “switch” statement preferable over an “if” statement?
If I have a char * variable pointing to the name of a function ..
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
What are the Advantages of using macro