What do you mean by recursion in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What is header file in c?
Why clrscr is used after variable declaration?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
write a program for fibonaci series by using while loop in c?
How can I manipulate strings of multibyte characters?
Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321
difference between c and c++
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
What is the purpose of clrscr () printf () and getch ()?