well thnx to all those who tried to help, but i have to ask did any of u actually compile and try it, because if u did u shoulda noticed that, it did solve my...
Try: time2=(19*60*60L); (Notice L at the end of the line.) Assuming you are in a 16-bit DOS environment, your programme calculates the integer arithmetic in 2...
hello, how are you my name is edward and i am asking you to help me solve a problem on the subject above. I need help to write a c program to process a list...
hello, how are you i need help to write a C program to process the names of 15 employees. Their id#,address,phone#,age and gender should be included....
I would use a structure to contain the information for example: struct people{ string name [15]; int id [15]; string address [15]; int age [15]; string phone...
I would use a structure to contain the information for example: struct people{ string name [15]; int id [15]; string address [15]; int age [15]; string phone...
I would use a structure to contain the information for example: struct people{ string name [15]; int id [15]; string address [15]; int age [15]; string phone...
can anyone explain this c code.... float j=5.3; printf("%d",j); i get the output as 0... ridiculous...i expected 5 .... i cannot decipher how.... bye rajesh ...
i think u people got me wrong.. what i asked was, if u typecast a float to an integer , the floating point gets truncated eg float j=5.3 int i=j ==> i=5 now...
all you have to do is to take input from the keyboard one at a time .. and print an "*" in the screen ... u can use getchar() to get the input ... there...
Hi ... Yes, that's true. But in your call of printf there is no cast ! Just look at the printf declaration: int printf(const char* format, ...); How the...
i am required to write a help program can anyone help me __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing...
Hi, I'm in need of programmers, who's interested? It won't take more than half a day (maybe even hours), but I'm willing to pay $300+ for it. Roughly, the...
Hi, I am having problems to pass a 2-D array to a function. The dimension of my array should be provided by the user...How do I do the prototype and definition...
Hi, I need to test whether any of the input from the user is enclosed in "quotation marks" (programming in c). I have no idea how to test for this. can anyone...
// This is a basic example #include <stdio.h> #include <iostream.h> #define MAXNAME 10 //The maximum length for the person name #define MAX 20 //The maximum...
(is anyone there?) I have a crazy bug in one of my programs and I just can't seem to find it reply to this if you wish to help (it involves a linked list ...
ok I may be wrong, but.. to get a string from user input wouldn't it be easier to just - int n = 5; char array[n]; cin.getline(array,n); I think that should...
Hi All,
I have a little problem that i am not able to find solution to. i am not
very comfortable with programming in C, I am basically a database guy
and...
... be ... The above is valid; however, it requires that the programmer re- compile for each change the user makes. I believe the person who asked for help...