I need to develop a procedure for Assembly language and call that procedure from C language (pass a string and return an integer value). My assembly procedure works fine \"stand
recommend a C compiler
Not enough info, however if your platform is significant enough, chances are that GCC already supports it.
and also a way to make the simple C program that is able to call the assembly procedure and get the returned value.
The way for writing simple C programs is using a text editor. (Oh wait, you're interested in the code? Here it goes:
#include
extern int foo();
int main()
{
int i = foo();
printf("%d\n", i);
return 0;
}