What is %d used for?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program of advanced Fibonacci series.
What is the general form of #line preprocessor?
write a addition of two no. program with out using printf,scanf,puts .
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 a stack
What is double pointer?
how to write a prog in c to convert decimal number into binary by using recursen function,
How many data structures are there in c?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
main() { float a=3.2e40; printf("%d",a); }
What is variables in c?
What are the types of variables in c?