How do i store a paragraph into a string?
for example, if i input a long paragraph, the program will
read the words one by one and concatenate them until no word
is left.
Answer Posted / kamlesh
we can use simply.... gets(paragraph)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
define string ?
How many data structures are there in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is bin sh c?
write a program to print largest number of each row of a 2D array
What is the difference between array_name and &array_name?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
how should functions be apportioned among source files?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Tell me can the size of an array be declared at runtime?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What does emoji p mean?
given post order,in order construct the corresponding binary tree
Explain how do you print only part of a string?
What is the difference between typedef struct and struct?