Which is better between malloc and calloc?
No Answer is Posted For this Question
Be the First to Post Answer
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
What are dangling pointers? How are dangling pointers different from memory leaks?
how to write a program which adds two numbers without using semicolon in c
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
do you think its fraud or original company?
What is a loop?
write an algorithm and c program to add two 2x2 matrics
How do you write a program which produces its own source code as output?
Differentiate Source Codes from Object Codes
c program to subtract between two numbers without using '-' sign and subtract function.
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5