Computer Science, asked by josephdavidnayak, 6 months ago

WAP to assign 67 and 45 to two different variables. Calculate the sum and product print the sum with a proper output statement​

Answers

Answered by Pallakavya
2

3 III

4 IV

.....

98 LXXXXVIII

99 LXXXXIX

100 C

Click me to see the solution

86. Write a C programming to display the sizes and ranges for each of C's data types. Go to the editor

Sample Output:

Size of C data types:

Type Bytes

--------------------------------

char 1

int8_t 1

unsigned char 1

uint8_t 1

short 2

int16_t 2

uint16t 2

int 4

unsigned 4

long 8

unsigned long 8

int32_t 4

uint32_t 4

long long 8

int64_t 8

unsigned long long 8

uint64_t 8

float 4

double 8

long double 16

_Bool 1

Click me to see the solution

87. Write a C programming to display the sizes and ranges for each of C's data types. Go to the editor

Sample Output:

Ranges for integer data types in C

------------------------------------------------------------

int8_t -128 127

int16_t -32768 32767

int32_t -2147483648 2147483647

int64_t -9223372036854775808 9223372036854775807

uint8_t 0 255

uint16_t 0 65535

uint32_t 0 4294967295

uint64_t 0 18446744073709551615

============================================================

Ranges for real number data types in C

------------------------------------------------------------

flaot 1.175494e-38 3.402823e+38

double 2.225074e-308 1.797693e+308

long double 3.362103e-4932 1.189731e+4932

Click me to see the solution

88. Write a C programming to create an extended ASCII table. Print the ASCII values 32 through 255. Go to the editor

Sample Output:

|---------------------------------------------------------------------------------------------------------|

|extended ASCII table - excluding control characters |

| Ch Dec Hex | Ch Dec Hex | Ch Dec Hex | Ch Dec Hex | Ch Dec Hex | Ch Dec Hex | Ch Dec Hex |

|----------------|----------------|-------------|--------------|--------------|--------ff |

Click me to see the solution

89. Write a C programming to calculate (x + y + z) for each pair of integers x, y and z where -2^31 <= x, y, z<= 2^31-1. Go to the editor

Sample Output:

Result: 140733606875472

Click me to see the solution

90. Write a C programming to find all prime palindromes in the range of two given numbers x and y (5 <= x<y<= 1000,000,000). Go to the editor

A number is called prime palindrome if the number is both a prime number and a palindrome.

Sample Output:

Input two numbers (separated by a space):

List of prime palindromes:

0

1

Click me to see the solution

91. Write a C programming to find the angle between (12:00 to 11:59) the hour hand and the minute hand of a clock. Go to the editor

The hour hand and the minute hand is always among 0 degree and 180 degree. For example, when it's 12 o'clock, the angle of the two hands is 0 while 3:00 is 45 degree and 6:00 is 180 degree.

Sample Output:

Input hour(h) and minute(m) (separated by a space):

The angle is -23076408.0 degrees at 0:4195776.

Click me to see the solution

92. Write a C programming to find the last non-zero digit of the factorial of a given positive integer. Go to the editor

For example for 5!, the output will be "2" because 5! = 120, and 2 is the last nonzero digit of 120

Sample Output:

Input a positive number:

The last non-zero digit of the said factorial:

0

Click me to see the solution

93. Write a C programming to check if a given number is nearly prime or not. Go to the editor

Nearly prime number is a positive integer which is equal to product of two prime numbers.

Sample Output:

It is not a Nearly prime number.

Click me to see the solution

C programming Code Editor:

More to Come !

Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.



New Content published on w3resource :

Python Numpy exercises

Python GeoPy Package exercises

Python Pandas exercises

Python nltk exercises

Python BeautifulSoup exercises

Form Template

Composer - PHP Package Manager

PHPUnit - PHP Testing

Laravel - PHP Framework

Angular - JavaScript Framework

React - JavaScript Library

Vue - JavaScript Framework

Jest - JavaScript Testing Framework

by TaboolaSponsored LinksYo

Hope it helps u plz mark me as brainleist thank you

Similar questions