Howto Compile Source Code on Ubuntu
./configure make sudo make install
The above 3 comands work for most of the softwares. If doesn't, go for read me file.
Tech tips and explorations
./configure make sudo make install




#include <stdio.h>
#include <string.h>
int main()
{
int n;
char buff[100];
memset(buff,0,sizeof(buff));
printf("Enter a number:");
scanf("%d",&n);
printf("You entered %d \n",n);
printf("\n Enter a name:");
fgets(buff,sizeof(buff),stdin);
printf("\n The name entered is %s\n",buff);
return 0;
}
~/home $ ./aa Enter a number:123 You entered 123 Enter a name: The name entered is ~/home $ ./aa Enter a number:123abc456 You entered 123 Enter a name: The name entered is abc456
#include <stdio.h>
#include <string.h>
int main()
{
int n;
char buff[100];
memset(buff,0,sizeof(buff));
printf("Enter a number:");
scanf("%d",&n);
printf("You entered %d \n",n);
getchar();
printf("\n Enter a name:");
fgets(buff,sizeof(buff),stdin);
printf("\n The name entered is %s\n",buff);
return 0;
}
~/home $ ./aa Enter a number:123 You entered 123 Enter a name: globalsoftbay The name entered is globalsoftbay




This
is one of the best smart phones on the market, competing with Apple's iPhone 4S
in just about every category. It has a lot of bells and whistles and a bright,
big display. There is 4G, video chat, and the newest version of the Android 2.2
operating system. The touch screen is so large that it makes it great for video
chat and the AMOLED display is also great for watching videos. Plus, there is
390 minutes of talk time with a single charge. There is tons of memory
available to store your photos, videos, and pictures too because each phone has
32GB.
