python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
I have a problem in C about reversing a string (reversing rows and letters
#include <stdio.h>
#include <string.h>
#define W 5
#define N 10
void print_(const char[W][N],int);
void reverse(char[W][N],int);
int main ( ) {
char words[W][N] ;
char test[N];
char endwor...
El Dimos Karam
Votes: 0
Answers: 1
Actual answer is 11100 but we got 00111,how to reverse this
b=[]
def number(num):
if num==0:
return
if num%2==0:
print("0")
a=num/2
else:
num//2==0
print("1")
a=num//2
return n...
bhushan bowlekar
Votes: 0
Answers: 2
Django DeleteView strange behavior
So I have a problem with a Django class-based Delete View. Actually, the delete view works just fine as it deletes the chosen entry, but the problem occurs when I want to redirect to the DetailView UR...
Damian Keretić
Votes: 0
Answers: 0
Reverse the order of characters within words with five letters or more
I'm new to Java and I'm still learning. As a part of my learning I took a challenge to write a program that will take a string, and check if there are any words, that are 5 or more in length and if so...
Paweł Niewolak
Votes: 0
Answers: 2