What does calloc stand for?
No Answer is Posted For this Question
Be the First to Post Answer
what is diference between return 0 and return NULL??
How can you increase the size of a dynamically allocated array?
How many main () function we can have in a project?
write a program that print itself even if the source file is deleted?
What is unary operator?
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?
which will be first in c compiling ,linking or compiling ,debugging.
What are control structures? What are the different types?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
Why malloc is faster than calloc?
What is structure in c definition?
fn f(x) { if(x<=0) return; else f(x-1)+x; }