Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Programming in C 3. (10 pts) Mark below each of the following C constants using its representation type: decimal, octal or hexadecimal. 777 0123 Ox111

image text in transcribedProgramming in C

3. (10 pts) Mark below each of the following C constants using its representation type: decimal, octal or hexadecimal. 777 0123 Ox111 1001001 4. (10 pts) For each constant below tell whether it is legal or illegal. For each illegal one, tell why it is illegal. For each legal one, mark its representation type: decimal, octal or hexadecimal. 012345678 OxABCDEF 1234567F 01001001 More problems added after the Wednesday class: 5. (10 pts) What is the value (in decimal) of X in each case below? Give the expression based on which you arrive at your value. Assume 4 bytes are used to store int and float, 8 for long, double, and long double. a int X; X = 'F' +10; b. float x; X = sizeof(char) + (float) sizeof(1.0L); c int C = 3; X = 'A' + 'E'-5*C + 'C'; 6. (10 pts) Suppose the variables cand offset are defined by the following statements: charc = ''; int offset = 'e'-'E'; Write C commands that turn into an upper case 'F' using the value in offset and then print the character represented by c

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Sql All In One For Dummies 7 Books In One

Authors: Allen G Taylor ,Richard Blum

4th Edition

1394242298, 978-1394242290

More Books

Students also viewed these Databases questions

Question

8-6 Who poses the biggest security threat: insiders or outsiders?

Answered: 1 week ago