mohan.jawahar Beginner
Joined: 20 Jan 2009 Posts: 1 Topics: 1
|
Posted: Thu Jan 22, 2009 1:06 am Post subject: Unable call C program from Cobol |
|
|
Hi,
I am calling a C program from Cobol without passing parameters. Compilation went fine. But when executing it is giving me S0c7.
could you please help me to tell what is the issue.
here is the C program.
#include <stdio.h>
#include <string.h>
extern "C" {void GCOSHA3() ;}
/*
*
*/
void GCOSHA3()
{
int i,j;
} |
|