write a program to display the numbers in the following
format
4 4
3 3 3 3
2 2 2 2 2 2
1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 0
1 1 1 1 1 1 1
2 2 2 2 2
3 3 3
4
Answer Posted / meet parikh
the above answer is in Java...........
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is there a built-in function in C that can be used for sorting data?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Where we use clrscr in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is the advantage of an array over individual variables?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is pointer & why it is used?
What does void main return?
How can I split up a string into whitespace-separated fields?
What is the data segment that is followed by c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Combinations of fibanocci prime series
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is formal argument?