Had a normal c code that prints helloworld
#include<stdio.h>
int main(void)
{
printf("Helloworld");
return 0;
}
I have to make an app to run this c code on a device running in android without using NDK and JNU for this and output should be in text view .As i am new to android help me regarding this.