Category "dev-c++"

IDE Font spacing problems

A couple months ago, the font I was using in the NetBeans IDE suddenly had huge spaces between each letter, making it almost unreadable. (I was using the Papyru

Creating a file using fopen()

I am just creating a basic file handling program. the code is this: #include <stdio.h> int main() { FILE *p; p=fopen("D:\\TENLINES.TXT","r"); if(p==0) {

C++ Arrays and writing of values

I'm trying to write a punnett square generator for a biology class, it's quite simple, but I can't figure out how to get the values to write to the other blocks