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


Please Help Members By Posting Answers For Below Questions

What does %p mean c?

613


Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

650


Why c is a procedural language?

568


Write a Program to accept different goods with the number, price and date of purchase and display them

5412


Write the syntax and purpose of a switch statement in C.

608






What is character constants?

704


‎How to define structures? · ‎

614


Can you please explain the difference between exit() and _exit() function?

580


All technical questions

1497


The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?

649


Explain void pointer?

580


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

641


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

760


what do u mean by Direct access files? then can u explain about Direct Access Files?

1629


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1245