Recent content by siesta

  1. S

    🔒 Closed Dahil wla na sa utak ko help po mabilisan lng

    file: main.c #include <stdio.h> #include <stdlib.h> typedef struct Student Student; struct Student { char id[32]; char name[32]; char course[32]; int score[5]; float grade[5]; }; Student students[100]; int numStudents=0; void readfile() { FILE...
  2. S

    🔒 Closed About reversing

    #include <stdio.h> int main() { int d; printf("Enter integer: "); scanf("%d",&d); printf("Reverse: "); do { printf("%d",d%10); d/=10; } while(d>0); return 0; }
  3. S

    🔒 Closed C++ problem

    #include <stdio.h> int main() { float grade=0,sum=0,ave=0; int count=0; while(1) { printf("Enter grade or a negative number to exit: "); scanf("%f",&grade); if(grade<0) { break; } sum+=grade; count++; ave=sum/count...
  4. S

    🔒 Closed Tinycc easy gl2d freeglut test - lotto picker

    TinyCC Easy GL2D FreeGlut Test - Lotto Picker https://www.dropbox.com/s/s2bzarm3s2mcsxj/TinyCCEasyGL2DFreeGlutTest-LottoPicker.zip?dl=0
Back
Top