Forum: C May 23rd, 2008 |
| Replies: 8 Views: 484 |
Forum: C May 23rd, 2008 |
| Replies: 8 Views: 484 Re: Error Message "Redifinition of `Struct ...' Now here it seems that compiler is not able to find the header files used in nat.c. So specify the search path of those header files in makefile , using -I option.
eg: Header files are somewhere in... |
Forum: C++ May 19th, 2008 |
| Replies: 7 Views: 598 |
Forum: C May 16th, 2008 |
| Replies: 10 Views: 413 Re: Help with doing loops You can use do while loop. for eg:
char ch;
do
{
stuff to be done
.
.
.
printf("Do u want to continue(y/n):");
scanf("%c",&ch); |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 443 |
Forum: C++ May 16th, 2008 |
| Replies: 7 Views: 598 |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 484 |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 484 Re: Error Message "Redifinition of `Struct ...' hi..
First check whether you have declared structs more than 1 time or not.
To check open a terminal and go to the directory containing the source code, using cd command and than execute command... |
Forum: C++ May 16th, 2008 |
| Replies: 7 Views: 598 how to create a Linux distro independent code Hi..
I have created a shared object by developing and compiling it on RHEL 5.
Than I tried to use same shared object on RHEL 4 and SuSe 10.0.But it didn t work.Error message shown was " Floating... |
Forum: C++ Apr 3rd, 2008 |
| Replies: 4 Views: 512 |
Forum: C++ Apr 1st, 2008 |
| Replies: 4 Views: 512 |
Forum: Linux Users Lounge Mar 24th, 2008 |
| Replies: 1 Views: 817 tool to view jp2 files ? Hi...
I am using RHEL 5. But I am not able to view jp2 files on it... I have searched on net to find some plugin to do so.. Got one but it worked only once... So anybody can please tell me what to... |
Forum: Linux Users Lounge Mar 11th, 2008 |
| Replies: 1 Views: 397 problem wit the shared library I have created a shared library in some directory and Copied it to /usr/lib path.
Now when I execute my program by just specifying name of the program with g++ compiler, I am getting error undefined... |
Forum: C++ Mar 10th, 2008 |
| Replies: 0 Views: 453 |
Forum: C Dec 18th, 2007 |
| Replies: 11 Views: 781 |
Forum: C Dec 18th, 2007 |
| Replies: 11 Views: 781 query regarding swtich case When I execute this code ,it accepts 2 nos,prints the msg enter your choice and terminates..
#include<stdio.h>
int main()
{
char ch;
int a,b;
printf("enter 2 nos :");
scanf("%d %d",&a,&b); |
Forum: C Nov 24th, 2007 |
| Replies: 2 Views: 1,164 |
Forum: C Nov 24th, 2007 |
| Replies: 2 Views: 1,164 |