What is enumerated data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
Why do we use int main?
How do we open a binary file in Read/Write mode in C?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the advantages and disadvantages of c language?
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Do you know the difference between malloc() and calloc() function?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What is static memory allocation? Explain
Why is c so popular?