how to solve "unable to open stdio.h and conio.h header files
in windows 7 by using Dos-box software
No Answer is Posted For this Question
Be the First to Post Answer
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
what is c?
what is an array
What is meant by preprocessor in c?
How do you override a defined macro?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Write a program to print factorial of given number without using recursion?
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
What functions are used in dynamic memory allocation in c?
write a program to interchange the value between two variable without using loop
find largest element in array w/o using sorting techniques.