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 is struct node in c?
Write a program with dynamically allocation of variable.
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
What is stack in c?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
Write a program for print infinite numbers
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is use of pointer?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
What is the process to generate random numbers in c programming language?