What should malloc() do?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are type modifiers in c?
What do you mean by a local block?
how can use subset in c program and give more example
what is used instead of pointers in java than c?
Why is c called c not d or e?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
what is the role you expect in software industry?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Is c programming hard?