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 sriharsha
It will not become negative if we use unsign data type.
| Is This Answer Correct ? | 19 Yes | 3 No |
Post New Answer View All Answers
When can a far pointer be used?
What is difference between function overloading and operator overloading?
What is volatile, register definition in C
how to construct a simulator keeping the logical boolean gates in c
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
How do you define structure?
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
Do string constants represent numerical values?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What are void pointers in c?
What is the difference between %d and %i?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Explain how do you use a pointer to a function?
What is unsigned int in c?
Why c is a mother language?