How can I remove the trailing spaces from a string?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
How can I find the day of the week given the date?
Why is main function so important?
how to write a bubble sort program without using temporary variable?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
What is the Difference between Class and Struct?
Is there a way to compare two structure variables?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
can i know the source code for reversing a linked list with out using a temporary variable?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark