simple c++ program for "abcde123ba" convert "ab321edcba"
with out using string
Answers were Sorted based on User's Feedback
Answer / prasenjit roy
#include "stdio.h"
int main(int argc, char* argv[])
{
char sBuffer[]="abcde123ba";
char sBuff[100];
char *pStr = sBuffer;
int i;
puts(sBuffer);
while(*pStr != '\0')
++pStr;
for ( i = 0; pStr != sBuffer; i++,pStr--)
sBuff[i] = pStr[-1];
sBuff[i] = '\0';
puts(sBuff);
return 0;
}
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / pramod
void mystrrev(char* str)
{
char ch;
int last=strlen(str)-1;
for(int i=0;i<last;i++,last--)
{
ch=str[i];
str[i]=str[last];
str[last]=ch;
}
}
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ragavan
#include<stdio.h>
#include<conio.h>
//Using recursive
void print( char c)
{
char a;
if(c=='\n')
return;
a=getchar();
print(a);
printf("%c",c);
return;
}
void main()
{
char c;
clrscr();
c= getchar();
print(c);
getch();
}
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / abdelrhman matter
#include<iostream>
using namespace std;
int main ()
{
cout<<" insert Any number and i will switch it : ";
int num; cin>>num;
do
{
cout<<num%10;
num = num/10;
}while(num>0);
cout<<endl;
return 0;
}
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sandeep
#include<iostream.h>
#include<string.h>
int main()
{
char a='abcde123ba';
strrev(a);
cout<<a;
getch();
return 0;
}
Is This Answer Correct ? | 2 Yes | 11 No |
What is a list c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
What kind of jobs can I get with c++?
Explain about Virtual Function in C++?
Which software is best for c++ programming?
When is the copy constructor called?
What is the difference between while and do while loop?
Why preincrement operator is faster than postincrement?
What is a forward referencing and when should it be used?
Differentiate between realloc() and free().
How can you quickly find the number of elements stored in a static array?
Difference between delete and delete[]?
5 Answers Infosys, TCS, Virtusa,