Print the foll in C...eg when n=5 the o/p must b
+ +
+ + + +
+ + + + +
+ + + +
+ +
Answer / ataraxic
char *m[] = { "+ +", "++ ++", "+++++" };
for (i=1; i <= 5; i++)
printf("%s\n", m[5%i]);
| Is This Answer Correct ? | 1 Yes | 4 No |
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Explain 'bit masking'?
What is function prototype?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Explain the advantages and disadvantages of macros.
WHOT IS CHAR?
Is c a great language, or what?
When is an interface "good"?
What are the disadvantages of a shell structure?
write a program for the normal snake games find in most of the mobiles.
What are the standard predefined macros?
What is the deal on sprintf_s return value?