Who developed c language and when?
No Answer is Posted For this Question
Be the First to Post Answer
Explain in detail how strset (string handling function works )pls explain it with an example.
without using arithmatic operator convert an intger variable x into x+1
What does s c mean in text?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is the meaning of int *x[]();?
Explain how do you search data in a data file using random access method?
Why is it usually a bad idea to use gets()? Suggest a workaround.
If errno contains a nonzero number, is there an error?
What is the deal on sprintf_s return value?
Differentiate fundamental data types and derived data types in C.
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is a union?