Explain how can I remove the trailing spaces from a string?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by invalid pointer arithmetic?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Explain how can a program be made to print the line number where an error occurs?
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
What is the difference between #include and #include 'file' ?
how to make program without <> in library.
What is a list in c?
Where register variables are stored in c?
what is difference between c and c++
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
Do you know the purpose of 'register' keyword?