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
~33.2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for phobos666

Hi, My pc seems to start since im able to hear the fan running but there is no display in the monitor. I've checked my monitor and it is fine. An other interesting thing is that after repeatedly trying to start my system it seems to boot after a random …

Member Avatar for rubberman
0
190
Member Avatar for vivekpriyadarsh

1)w.a.p. in c language that accepts a file as input and prints the no. of words in it. 2)w.a.p. in c language that accepts a file as input and converts all alphabetic characters in it to upper case. 3)w.a.p. in c that accepts a string and prints the list of …

Member Avatar for WaltP
-4
206
Member Avatar for phobos666

Hi, I am using a C program to open and scan a file containing rows of x,y coordinates. But I need to use the same program to open different files having different number of rows.Therefore, I cant fix a constant number for the array. This is what I have used: …

Member Avatar for Narue
0
130
Member Avatar for phobos666

Hi, I need to open a file containing string values one below the other and display them. I'm able to open the file but there is some error while displaying them. Below is my code, kindly guide me to my mistake. [code=c] FILE *fp; char airfoil[6]; fp=fopen("/cygdrive/d/airfoil.txt","r"); if(fp!=NULL) { while …

Member Avatar for vinitmittal2008
0
211
Member Avatar for phobos666

Hi y'all, I'm new to C and to this community so kindly bear with me. I need to open a txt file using C(only).The thing is I'm able to open it if it is directly inside a drive partition(D:\), but if it is inside a folder then its not opening. …

Member Avatar for phobos666
0
285
Member Avatar for phobos666

Hi, Can anyone tell me how to concatenate two strings in NetBeans using Cygwin and also what is the right header file to be included?

Member Avatar for phobos666
0
100
Member Avatar for phobos666

Hi, Could someone tell me how to open a file in C based on user input. This is what I have tried: [code=c] printf("enter the filename"); scanf("%s",filename); fp1=fopen("filename","r"); [/code]

Member Avatar for Narue
0
32K
Member Avatar for phobos666

Hi everyone, I need to write a bunch of x,y coordinates to a txt file one below the other using C(only). I'm able to do so but all the coordinate values occur one next to the other. Here's my code: [code] FILE *file1 = fopen ( "/cygdrive/d/newfile1.txt", "w" ); printf("The …

Member Avatar for saad749
0
150