Advertisement
Java_Volume1 Debugging and Error Handling #100299

String Flip

Just a small program to flip a string

AI

AI Samenvatting: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Broncode
original-source
// stringflip.c : Defines the entry point for the console application.
//
#include "stdafx.h" //C users delete this line
#include<string.h>
#include<stdio.h>
#include<conio.h>
void main()
{
	char name[25]; char backwards[25];
	int j, i, k;
	printf("Please enter your name > ");
	gets(name);
	j = i = strlen(name);
	for(k = 0; k <= j-1; k++)
	{
		
		backwards[k] = name[i-1];
		i--;
	}//end for
	backwards[k] = '\0';
	printf(backwards);
	printf("\n");
	
}//end main
Upload
Originele reacties (3)
Hersteld van de Wayback Machine