Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K
~850 People Reached
Favorite Forums

4 Posted Topics

Member Avatar for yabuki

I created my own header file in C by creating the ff. files: myfile.h, myfile.c and main.c.Afterwards, I compiled myfile.c so I already have the object file for it, but the problem is when I compiled and run main.c this error message appeared: "Undefined symbol _sum". Please help me to …

Member Avatar for xmelx
0
391
Member Avatar for yabuki

Hello, I just only want to ask.How to connect MS access database to a C program.See the code below: #include<stdio.h> char firstname[20], middlename, lastname[20]; main() { clrscr(); printf("Enter your First Name: ");scanf("%s",&firstname); printf("Enter your Middle Name: ");scanf("%c",&middlename); printf("Enter your Last Name: ");scanf("%s",&lastname); getch(); } This is what I want to …

Member Avatar for shiv1
0
183
Member Avatar for lonely_girl

Hello I modified your source code try the source code below: #include<stdio.h> int d,m; main () { clrscr(); printf ("Enter the date of your birth: "); scanf("%d",& d); printf("\nEnter the month of your birth: "); scanf("%d",& m); printf("\n%d-%d",d,m); if ((d>=21 || d<=19) && (m==3 || m==4)) printf("\nYour star is ARIES"); …

Member Avatar for lonely_girl
0
152
Member Avatar for ryan311

Hello try this, for example the name of your command button is "cmdadd" [code] Private Sub cmdadd_Click() Dim ans ans=val(text3.Text) + val(text4.text) label1.Caption=ans End Sub or Private Sub cmdadd_Click() label1.Caption=val(text3.Text) + val(text4.text) End Sub[/code]

Member Avatar for QVeen72
0
124

The End.