My code for extra-terrestrial is not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

My code for extra-terrestrial is not working

#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char arr[10]; char *ptr; ptr = (char*) malloc(10* sizeof(char)); for(int i=0; i<10; i++) { scanf("%c", &arr[i]); } for(int j =10-1; j>=0; j--) { printf ("%c", arr[j]); } return 0; }

20th Feb 2021, 3:53 PM
Vishal
Vishal - avatar
5 Answers
+ 1
In case of a string of length less than the length 10, the program will display a lot of useless characters (NULL to be precise) before the actual string leading to wrong answer. Simple fix is to start iterating from the length of the string instead of traversing entire array backwards. Also your program will fail on any input larger than the length 10
20th Feb 2021, 3:58 PM
Arsenic
Arsenic - avatar
+ 4
FYI, 35 is the minimum size of array you'll need in order to pass this code coach. Anything less will result in an error for at least 1 or more of the tests.
20th Feb 2021, 5:14 PM
ChaoticDawg
ChaoticDawg - avatar
+ 1
Arsenic what thread I didn't get it
21st Feb 2021, 12:26 PM
Vishal
Vishal - avatar
0
Arsenic: Could you please take a look at this code of mine also not running for Halloween-candy #include <stdio.h> int main() { int houses; scanf("%d", &houses); //your code goes here int p = 100/houses; int z = 100%houses; int c = p*2; if(houses > 3 && z == 0) { printf ("%d",c); } else { printf ("%d",c+1); } return 0; }
21st Feb 2021, 12:20 PM
Vishal
Vishal - avatar
0
Vishal it is preferred to keep one thread for one question only. Either DM me the query or better create another question thread regarding the same. edit: by thread, I mean a new question thread or question post (whatever you like to call it )
21st Feb 2021, 12:25 PM
Arsenic
Arsenic - avatar