Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
rstring
#include<stdio.h> #include<string.h> // Function to reverse a string void * reverse(char * str ) { int i, len ; // calculating length of the string len = strlen(str); for( i=len ; i>=0 ; i--) // *(str+i) is the character at the ith index // of the string printf( "%c", *(str+i)); } // Driver code int main( void ) { char a[] = "suleman khan" ; reverse(a); return(0); }
run
|
edit
|
history
|
help
0
WinAPI not accessible
"Mostly invalid states" and unordered_set
parantheses matching test 1
hgh
vc++ bug?
Test
Multi Inheritance
decltype_lambda
infix to postfix v 2.0
c++ pure apstraction