the maximum value that an integer constant can have is
a) -32767
b) 32767
c) 1.701e+38
d) -1.7014e+38
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
how many error occurs in C language ?
What does %d do?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is the importance of c in your views?
What is the advantage of a random access file?
Why is %d used in c?
how to find out the reverse number of a digit if it is input through the keyboard?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
to convert a string without using decrement operater and string functions
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)