palindrome.c - #1
Open
smilehacker-max wants to merge 533 commits into
Open
Conversation
Create 1236A.cpp
created 1216D.cpp
Create 1230A.cpp
Create 1220A.cpp
Create 1230B.cpp
Create 1206A.cpp
Create 1221B.cpp
Javascript implementation of mergeSort Algorithm - properly documented - contains multistep explainations
Solution for a medium level Codechef problem SURCHESS (appeared in OCT 18 Long Challange)
Solutions by: Abhishek Tiwari (@become)
Signed-off-by: vatsa287 <i.mnshreevatsa@gmail.com>
ADD: radix_bin sort
…ay-generators random int array generators
hello world in spanish
created Привет, мир
Create HelloWorldInGerman
Added Codeforces Problem 996A - Hit the Lottery in C++
new print hello world
Hackerrank-Solutions
Create 461HammingDistance.java
Added "Print Pretty" and "Rectangle Area"
DS/C#/BinarySearchTree
Mergify: configuration update
linear_Search.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#include <stdio.h>
int main() {
int n, reversedN = 0, remainder, originalN;
printf("Enter an integer: ");
scanf("%d", &n);
originalN = n;
}