What is the purpose of the preprocessor directive error?
No Answer is Posted For this Question
Be the First to Post Answer
Why does the call char scanf work?
what is the difference between char * const and const char *?
What are the disadvantages of external storage class?
which is faster execution: loops or recursion?
What is int main () in c?
Define function pointers?
What is wrong with this program statement?
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
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(); }
Write a C program that reads a series of strings and prints only those ending in "ed"
What does calloc stand for?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???