Answer:
see explaination
Explanation:
a)
customerRecord.lastName
b)
customerPtr->lastName or (*customerPtr).lastName
c)
customerRecord.firstName
d)
customerPtr->firstName or (*customerPtr).firstName
e)
customerRecord.customerNumber
f)
customerPtr->customerNumber or (*customerPtr).customerNumber
g)
customerRecord.personal.phoneNumber
h)
customerPtr->personal.phoneNumber or (*customerPtr).personal.phoneNumber
i)
customerRecord.personal.address
j)
customerPtr->personal.address or (*customerPtr).personal.address
k)
customerRecord.personal.city
l)
customerPtr->personal.city or (*customerPtr).personal.city
m)
customerRecord.personal.state
n)
customerPtr->personal.state or (*customerPtr).personal.state
o)
customerRecord.personal.zipCode
p)
customerPtr->personal.zipCode or (*customerPtr).personal.zipCode
Answer: filename and extension.
Explanation:
Suppose we have %~nxa, where we have two modifiers n and x, and a single variable a.
So, the n modifier after the tilde forces the index variable to expand only to the filename(by the n modifier) and the extension(by the x modifier).
It produces the filename and extension instead of the full path.
Hmmmmmmmmm, <u>powerpoint</u>?
Answer:
Explanation:
Given
Required
Write an equivalent expression in C
The given expression uses + and + is represented as + in C
So: The equivalent expression is
However, C supports compound assignment operators
So:
can be rewritten as