Write a program in c to print
1
121
12321
1234321
123454321
Answer Posted / smita adhikari
a = 1
FOR i = 1 TO 5
PRINT a * a
a = a * 10 + 1
NEXT i
END
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
difference between native and cross compilers
diff between exptected result and requirement?
Why is structure padding done in c?
What is the symbol indicated the c-preprocessor?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is zero based addressing?
Why pointers are used in c?
What are the 4 data types?
What is the difference between pure virtual function and virtual function?
What is the general form of a C program?
What is the use of the function in c?
What is the significance of scope resolution operator?
can any one tel me wt is the question pattern for NIC exam
What is data structure in c programming?
What is #define size in c?