1
#include<stdio.h>
#include<stdlib.h>
1 int main(void)
{
int maxLineCount
char *line = NULL;
size_t size;
500maxCharCount
500, index, i, count;
char *a[maxLineCount];
for (index = 0; index < maxLineCount; index++)
a[index] (char *)malloc(maxCharCount * sizeof(char));
int noOfLine
// read the input as line
while(getline(&line, &size, stdin) != -1) {
strcpy(a[noOfLine++], line);
}
for(index 0; index < noOfLine; index++)
printf("%s", a[index]);
return 0;
}
question: need to help to find the total no. of options available to book like this in the given range
Answers
Answered by
8
oop----------broo
@&@&@&@&@&
Similar questions