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.
What is the size of structure pointer in c?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
How do I send escape sequences to control a terminal or other device?
Why does not use getgh(); and <conio.h> in c language.
Tell me when would you use a pointer to a function?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is data structure in c programming?
WAP to accept first name,middle name & last name of a student display its initials?
Why is sizeof () an operator and not a function?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
write a c program to find the probability of random numbers between 1-1000
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }