String Flip
Just a small program to flip a string
AI
สรุปโดย AI: 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.
ซอร์สโค้ด
// 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
ความคิดเห็นดั้งเดิม (3)
กู้คืนจาก Wayback Machine