How can I read and write comma-delimited text?
No Answer is Posted For this Question
Be the First to Post Answer
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
How can I direct output to the printer?
Why is void main used?
What are enumerated types?
What is else if ladder?
What is the diffences between Windows XP and Windows Visa
Explain a file operation in C with an example.
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
How many keywords (reserve words) are in c?
Explain what are run-time errors?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Explain what is a static function?