Welcome!

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 Arthur

  1. A

    Fun activity Say hello... in a coding language!

    #include <stdio.h> int main () { int message[] = {72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33}; int limit = sizeof (message) / sizeof (message[0]); int loop; for (loop = 0; loop < limit; loop++) { printf("%c", message[loop]); } printf("\n"); return 0; }
  2. A

    How to separate the calculation in 2nd for loop

    if I understand the problem right then I think that Sum should be set to equal zero after the average mark calculation printf("\n\t Grade : %c", Grade); } AvMark = Sum/cour; printf("\n\n\t Total Marks = %d", Sum); printf("\n\t Average Mark = %.2f", AvMark)...
  3. A

    Opinion's of Small program

    Hi I am a beginner learning C and welcome opinion / constructive criticism of a phone book program I wrote. If it is legible, needs comments, makes sense , just done plain old wrong :-) #include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct Contact{ char name[15]; char...
  4. A

    printf("Hello");

    Hi, my name is Arthur. I have been working to learn C so decided to join a forum that I can ask questions. I have done a little bit of C++ and some of the language in the Godot Game Engine GDScript and have just started with GTK+ in C. I am very beginner and a hobbyist. I have mostly only done...
Back
Top Bottom