Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Help me fix C code error - "the function is incomputable with its declaration."

Status
Not open for further replies.

ahm_hassaan

Member level 1
Joined
Feb 17, 2005
Messages
33
Helped
5
Reputation
10
Reaction score
0
Trophy points
1,286
Activity points
1,668
Help me fix C code error - "the function is incomputable with its declaration."

Dear All, Alsalam Alykom,
I wrote this program and it didn't work, and i think it was written well so plz help me in.

this the function decleration
void PutString ( const char * Ptr);

and I called it by
PutLogString( "Ahmed Hassaan" );
or
PutLogString( ( const char *) ("Ahmed Hassaan") );

and in the two times when compile it gave me,

"the function is incomputable with its declaration."

I used CodeVision for compiling this S/W. What did I do wrong???
 

Re: C problem

if you declare

PutString ...

and call

PutLogString ...

this cannot work, open your eyes !
 

C problem

i think you not declare
 

Re: C problem

actual * represent pionter mean this is address of that var.
 

Re: C problem

You are calling some function which does not exists.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top