write an algorithm to display a square matrix.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

1 Answers   TCS,


Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?

2 Answers   Accenture,


What does d mean?

0 Answers  


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


What is a macro in c preprocessor?

0 Answers  






What is pre-emptive data structure and explain it with example?

0 Answers  


What is the use of bitwise operator?

0 Answers  


What is the ANSI C Standard?

0 Answers   Celstream,


How are structure passing and returning implemented?

0 Answers  


what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 Answers  


what are the advantages & disadvantages of unions?

2 Answers  


What is the purpose of ftell?

0 Answers  


Categories