To print the pattern
1 2 3 4 5
10 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by enumeration constant?
Can variables be declared anywhere in c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
Is that possible to store 32768 in an int data type variable?
Write a C program to fill a rectangle using window scrolling
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
writw a program to insert an element in the begning of a doubly linked list
What does printf does?
How to convert decimal to binary in C using recursion??
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Why is sizeof () an operator and not a function?
Why c is procedure oriented?