Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by deicool

  1. deicool

    Terminal like application for my cellphone...

    A update since yesterday. I have already built a POC in 'C' language. The POC gives out all the files in a particular directory (the 'ls' command in unix, or the 'dir' command in windows). I now just need to keep adding commands to the program.
  2. deicool

    Terminal like application for my cellphone...

    Sorry, I would like to reinvent the wheel and not use Termux.
  3. deicool

    Terminal like application for my cellphone...

    Or it could be for Android?
  4. deicool

    C program hangs...

    Thank You. I will try on Linux too. As other programs are running (dozens of them), I doubt it is because of environment variable (btw, i am using CodeBlocks 20.03 IDE). Will try this out as well (gcc file.c -o file) Thanks.
  5. deicool

    C program hangs...

    Thanks once again. Here is the version I am using: gcc (x86_64-posix-seh-rev0, Built by MinGW-W64 project) 8.1.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A...
  6. deicool

    C program hangs...

    Hello @BorkedSystem32, Btw, i am getting the following error when I run the code written by you: ||=== Build file: "no target" in "no project" (compiler: unknown) ===| D:\Deepak\C\Test\stringReturn1.c.cpp||In function 'int main()':| D:\Deepak\C\Test\stringReturn1.c.cpp|12|error: cannot convert...
  7. deicool

    C program hangs...

    Hello BorkedSystem32, Thank you so much for giving me a direction. I will be careful using pointers. Also will pick up the book mentioned by you. Thanks once again.
  8. deicool

    C program hangs...

    Hello I am a newbie. My following program hangs when I run it: #include <stdio.h> char* myName() { /* char name1[20]; scanf("%s", name1); printf("%s", name1); return name1; */ char *name = "Flavio"; scanf("%s", name); printf("%s", name); return name...
  9. deicool

    Terminal like application for my cellphone...

    Hello Is it possible to create a terminal like application in C for my cellphone (Samsung Duos)? Any leads? Please advise. Thank You.
Back
Top Bottom