Forum: C May 23rd, 2008 |
| Replies: 8 Views: 1,233 Check what has been assigned to varialbe NETINCLUDE and what is the actual path of the header files included in .c file? Are they same? |
Forum: C May 23rd, 2008 |
| Replies: 8 Views: 1,233 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: 1,688 |
Forum: C May 16th, 2008 |
| Replies: 10 Views: 991 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: 1,042 Hi...
U were not comparing all the elements. code started with comparing a single element with others. Following code will help u out.
#include<stdio.h>
int main()
{
int i ,j... |
Forum: C++ May 16th, 2008 |
| Replies: 7 Views: 1,688 Its a sample code downloaded from Intel site. Which I have compiled to shared object. |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 1,233 Secondly There can be a change that the header file containing the definition of structures , has been included more than once in a file. |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 1,233 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: 1,688 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: 1,692 hi..
I am executing it on two different boxes. No Windows machine does not have dual core processor.
Thanx for your quick reply.. So can I reduce this CPU utlization by some way? |
Forum: C++ Apr 1st, 2008 |
| Replies: 4 Views: 1,692 Hi..
I have written a C++ program to compress and decompress jp2k files. But when I am executing this program the CPU usage is 100%... Can any one tell me :
why is it so and
how to reduce CPU... |
Forum: IT Professionals' Lounge Mar 24th, 2008 |
| Replies: 1 Views: 2,135 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: IT Professionals' Lounge Mar 11th, 2008 |
| Replies: 1 Views: 848 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... |
Forum: C++ Mar 10th, 2008 |
| Replies: 0 Views: 1,523 hi...
I have been assigned a task of porting Windows DLL on Linux...
DLL is being created using C++ and IPP (Integrated performance Primitives,set of libraries). VC++ IDE has been used for wring... |
Forum: C Dec 18th, 2007 |
| Replies: 11 Views: 1,712 Thanx alot..
Understood d concept...
I will definately take care of d tag next time... |
Forum: C Dec 18th, 2007 |
| Replies: 11 Views: 1,712 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: 3,723 Thanx.. A alot for u r quick reply.. |
Forum: C Nov 24th, 2007 |
| Replies: 2 Views: 3,723 Can any body tell me the difference between file descriptor and filepointer in C on linux? and when to use what? |