How can I read/write structures from/to data files?
No Answer is Posted For this Question
Be the First to Post Answer
Why malloc is faster than calloc?
What are runtime error?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Which function in C can be used to append a string to another string?
What is the difference between typedef struct and struct?
What is the role of && operator in a program code?
How can my program discover the complete pathname to the executable from which it was invoked?
Is python a c language?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
who will call your main function in c under linux?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none