Is c a great language, or what?
No Answer is Posted For this Question
Be the First to Post Answer
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Write a program to generate prime factors of a given integer?
Describe dynamic data structure in c programming language?
what is pointer?
What are types of preprocessor in c?
What is the condition that is applied with ?: Operator?
what is calloc and malloc?
consagous technology placement paper
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
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 the benefit of using #define to declare a constant?
What is the 'named constructor idiom'?