What is the main difference between calloc () and malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
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.
What are the types of functions in c?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
How can I open a file so that other programs can update it at the same time?
What is integer constants?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
A program to write a number of letters and numbers, such as counting and display
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
find the sum of two matrices and WAP for it.
How many types of arrays are there in c?
What is default value of global variable in c?