I am using "Microsoft Developer Studio" for compiling my c++ programs. Can any one shine some light on what the following error message means:
"Can not recognise the current class view information(.NCB) file format. Would you like to overwrite the file?(yes,
no)"
"Can...
Hello , I am a beginer in C programing. Is a C compiler available for Free download on the net? I am currently using MS visual C++ suit to compile my programs.
I want a dos window compiler......from where I can give command line parameters. Is there any way of giving command line parameters...
#include<stdio.h>
#include<stdlib.h>
#define MAX 5
/* to take a string input of unknown length from the user and print it*/
void main()
{
int i=0;
char *s;
s=(char *) malloc(MAX);
if(!s)
printf("memory not available\n");
int c;
while (( (c=getchar())!='\n') && (i < (MAX-1) ) )...
I am trying to compile a C program named " atof" (ref: Kernigham ritchie,second edition "The C programing language", pg 71). using a microsoft visual c++ compiler - version 6.
THe problem which I am getting is that when I compile and run the program for the value 1.234 (of...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.