What is meant by realloc()?
No Answer is Posted For this Question
Be the First to Post Answer
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
what is c++ programming?
Why doesn't the code "a[i] = i++;" work?
What is hashing in c language?
WHO WROTE C LANGUAGE?
Should a function contain a return statement if it does not return a value?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
What does %c mean in c?
Which is the memory area not included in C program? give the reason
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?