UVA 1124 - Celebrity jeopardy
Problem Link
Solution in c
#include<stdio.h> | |
int main() | |
{ | |
char ch[100]; | |
while(gets(ch)) | |
{ | |
puts(ch); | |
} | |
return 0; | |
} |
#include<stdio.h> | |
int main() | |
{ | |
char ch[100]; | |
while(gets(ch)) | |
{ | |
puts(ch); | |
} | |
return 0; | |
} |
Lakshman |
My name is Lakshman Gope. I'm a problem solver and a blogger. Now I am a student at Daffodil International University Department of Software Engineering. I like to learn algorithms and write clean code in an efficient and optimized way. I've been working on c, c++ and Java for a year and a half continuously.
No comments