Click here to Skip to main content
15,900,646 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Hard Disk Internal Test Pin
Stuart Dootson2-Sep-09 23:35
professionalStuart Dootson2-Sep-09 23:35 
QuestionRe: Hard Disk Internal Test Pin
David Crow3-Sep-09 2:35
David Crow3-Sep-09 2:35 
AnswerRe: Hard Disk Internal Test Pin
Hamid_RT3-Sep-09 3:36
Hamid_RT3-Sep-09 3:36 
QuestionIsAppThemed returns FALSE, should return TRUE Pin
andrew_dk2-Sep-09 22:39
andrew_dk2-Sep-09 22:39 
AnswerRe: IsAppThemed returns FALSE, should return TRUE Pin
Moak2-Sep-09 23:19
Moak2-Sep-09 23:19 
GeneralRe: IsAppThemed returns FALSE, should return TRUE Pin
andrew_dk3-Sep-09 8:33
andrew_dk3-Sep-09 8:33 
QuestionRe: IsAppThemed returns FALSE, should return TRUE Pin
Randor 3-Sep-09 10:09
professional Randor 3-Sep-09 10:09 
Questioncompile error_2 Pin
programmer2022-Sep-09 22:12
programmer2022-Sep-09 22:12 
Hi,
I am trying to compile this program with Visual Studio C++ 2008 as the compiler in Windows.

It is the program:
#include <stdio.h>

int main()
{
FILE *fichero;
char letra;

fichero = fopen("origen.txt","r");
if (fichero==NULL)
{
printf( "No se puede abrir el fichero.\n" );
exit( 1 );
}
printf( "Contenido del fichero:\n" );
letra=getc(fichero);
while (feof(fichero)==0)
{
printf( "%c",letra );
letra=getc(fichero);
}
if (fclose(fichero)!=0)
printf( "Problemas al cerrar el fichero\n" );
}
It is the error message:
>1.......warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
>c:\archivos de programa\microsoft visual studio 9.0\vc\include\stdio.h(237) : vea la declaración de 'fopen'
>...error C3861: 'exit': no se encontró el identificador
--------
Could anyone help me?
AnswerRe: compile error_2 Pin
Cedric Moonen2-Sep-09 22:29
Cedric Moonen2-Sep-09 22:29 
GeneralRe: compile error_2 Pin
programmer2023-Sep-09 1:07
programmer2023-Sep-09 1:07 
AnswerRe: compile error_2 Pin
Nuri Ismail2-Sep-09 22:30
Nuri Ismail2-Sep-09 22:30 
GeneralRe: compile error_2 Pin
programmer2023-Sep-09 1:08
programmer2023-Sep-09 1:08 
AnswerRe: compile error_2 Pin
David Crow3-Sep-09 2:38
David Crow3-Sep-09 2:38 
Questionmodify a DLL(binary) to call another DLL function/exe or embed a code...I need some concepts clarification Pin
Member 43963092-Sep-09 21:57
Member 43963092-Sep-09 21:57 
AnswerRe: modify a DLL(binary) to call another DLL function/exe or embed a code...I need some concepts clarification Pin
Richard MacCutchan3-Sep-09 2:21
mveRichard MacCutchan3-Sep-09 2:21 
QuestionApp runs on development machine, not on another machine Pin
sashoalm2-Sep-09 21:55
sashoalm2-Sep-09 21:55 
AnswerRe: App runs on development machine, not on another machine Pin
Randor 2-Sep-09 22:18
professional Randor 2-Sep-09 22:18 
JokeRe: App runs on development machine, not on another machine Pin
Michael Schubert2-Sep-09 22:39
Michael Schubert2-Sep-09 22:39 
GeneralRe: App runs on development machine, not on another machine Pin
sashoalm2-Sep-09 22:55
sashoalm2-Sep-09 22:55 
GeneralRe: App runs on development machine, not on another machine Pin
Randor 2-Sep-09 23:26
professional Randor 2-Sep-09 23:26 
GeneralRe: App runs on development machine, not on another machine Pin
sashoalm2-Sep-09 23:50
sashoalm2-Sep-09 23:50 
QuestionRe: App runs on development machine, not on another machine Pin
David Crow3-Sep-09 2:41
David Crow3-Sep-09 2:41 
AnswerRe: App runs on development machine, not on another machine Pin
sashoalm4-Sep-09 3:41
sashoalm4-Sep-09 3:41 
Questionuse CODBCFieldInfo structure to make sql string of each field Pin
A&Ms2-Sep-09 21:50
A&Ms2-Sep-09 21:50 
QuestionWMI Pin
navneet19852-Sep-09 21:42
navneet19852-Sep-09 21:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.