#include<stdio.h>
int main(void)
{
printf("Helloworld");
return 0;
}
Normal C code that prints Helloworld.
I have to make an app to run this c code on a device running in android without using NDK and output Helloworld displayed in TextView.How to execute this?