Write a program of prime number using recursion.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
what is the structure pointer?
What is the difference between the local variable and global variable in c?
What are the types of operators in c?
What is the most efficient way to count the number of bits which are set in an integer?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
What is null in c?
what r callback function?
Give me the code of in-order recursive and non-recursive.
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
what is the format specifier for printing a pointer value?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?