What is the difference between malloc() and calloc() function in c language?
No Answer is Posted For this Question
Be the First to Post Answer
how to print this pyramid * * * * * * * * * * * * *
How can I automatically locate a programs configuration files in the same directory as the executable?
what is the use of macro program
What are disadvantages of C language.
What is the code in while loop that returns the output of given code?
write a c program to store and print name,address,roll.no of a student using structures?
What does %d do?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What does 2n 4c mean?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }
27 Answers Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}