How does memset() work in C?
Answer / nashiinformaticssolutions
memset() initializes memory to a specific value.
Is This Answer Correct ? | 0 Yes | 0 No |
What is meant by operator precedence?
What is structure in c explain with example?
What happens if you free a pointer twice?
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
Combinations of fibanocci prime series
What is a macro?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is echo in c programming?
What is malloc return c?
how the compiler treats any volatile variable?Explain with example.
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
disadvantages of realloc ?