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 / sneha
it depends on the variable type
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What does the format %10.2 mean when included in a printf statement?
What is #include conio h?
Should I learn data structures in c or python?
What is #line in c?
can we have joblib in a proc ?
What is wrong with this statement? Myname = 'robin';
Is javascript based on c?
What does stand for?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
How do we print only part of a string in c?
What is c variable?
How many bytes are occupied by near, far and huge pointers (dos)?
How can you invoke another program from within a C program?
What are the string functions? List some string functions available in c.