Search:

Type: Posts; User: Iahim

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    17,254

    Programming a PIC 16F84 microcontroller in C

    First, I must say that I know very few things about programming a microcontroller in C, but I would like to learn.
    The following program is not written by me, but I have to write a similiar one...
  2. Replies
    14
    Views
    1,553

    lit = getchar(); If I use this line, the...

    lit = getchar();

    If I use this line, the program ends when it gets to it

    Anyway, I've search the help for some hints( I hate doing the Help search, I'm surprised that it helped me this time),...
  3. Replies
    14
    Views
    1,553

    I've put %s because %c doesn't work... If I do...

    I've put %s because %c doesn't work... If I do make the change, it exits the program after it prints on the screen "b) Multiply"(at least, this happens on my machine).
  4. Replies
    14
    Views
    1,553

    A very small problem

    #include <stdio.h>

    main()
    {
    int a,b,c;
    char lit;
    printf("A number: ");
    scanf("%d", &a);
    printf("Another number: ");
    scanf("%d",...
Results 1 to 4 of 4