Forum: Windows NT / 2000 / XP Sep 30th, 2009 |
| Replies: 3 Views: 173 thnx to daniweb..got the solution on the thread.. |
Forum: Windows NT / 2000 / XP Sep 30th, 2009 |
| Replies: 3 Views: 173 my computer sometimes on start shows the blue screen error with some error message as physical memory dump
i am not able to understand how to sort out the problem..please help to fix the problem..... |
Forum: C Sep 22nd, 2009 |
| Replies: 6 Views: 9,942 You are required to check whether the compiler is installed in c drive or not
if it is installed in other drive u must specify the program as
for eg. it is installed in d drive
d:\\tc\\bgi
... |
Forum: C Sep 22nd, 2009 |
| Replies: 5 Views: 707 All the new members must read the instructions before posting your queries.
This is the place where people get technical assistance. |
Forum: C Sep 10th, 2009 |
| Replies: 2 Views: 436 i think u must reinstall with the setup..
if the same problem comes then that might me corrupted.so then try to install with the new setup. |
Forum: C Sep 10th, 2009 |
| Replies: 20 Views: 856 it is used to compare the string letter by letter..if they are same then it return the value zero otherwise the difference in the ascii values in the first letter of the two string which are... |
Forum: C Jul 3rd, 2009 |
| Replies: 11 Views: 580 the meaning of
sum+=i;
is same as the
sum=sum+i; |
Forum: C Jul 3rd, 2009 |
| Replies: 1 Views: 203 I am getting problem to work with the structures..I am works on DBMS project in c languge . I wanted to use multiple structures without the use of the pointers but unable to use it as:
struct... |
Forum: C Apr 10th, 2009 |
| Replies: 2 Views: 284 the programming is all about implementing the thoughts you have in your mind..i think u should try first... |
Forum: C++ Apr 10th, 2009 |
| Replies: 3 Views: 255 It will better for the program if the username and password is defined by the user itself.. |
Forum: C Feb 3rd, 2009 |
| Replies: 23 Views: 1,039 It will good that i yourself generate the problem and try to solve it instead of searching it. |
Forum: C Jan 24th, 2009 |
| Replies: 7 Views: 862 >I am all confused, I don't where to start. This is my first programming class and i need some help please.
Before writing the code you must make the algorithm of the program you require which... |
Forum: C Jan 24th, 2009 |
| Replies: 3 Views: 334 see read the the link:
http://www.daniweb.com/forums/thread170561.html |
Forum: C Jan 23rd, 2009 |
| Replies: 9 Views: 421 @ sotiris25s
You need to go basics throughly. |
Forum: C Jan 23rd, 2009 |
| Replies: 5 Views: 700 Use code tags to post your code.
instead of including myfile.h you must include myfile.c |
Forum: C Jan 23rd, 2009 |
| Replies: 3 Views: 334 I have a small example how linking is to be done.
Suppose i have two program named imp.c and imp1.c
imp.c contains
void arr()
{
printf("hello ajay");
}
imp1.c contains |
Forum: C Jan 22nd, 2009 |
| Replies: 3 Views: 321 It depends where you are using :
fgets reads characters from stream into the string s. It stops when it reads either n - 1 characters or a newline character, whichever comes first.
gets collects... |
Forum: C++ Jan 21st, 2009 |
| Replies: 11 Views: 478 Some of your header files are missing .h extensions |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 i also had the same problem
now i was wrong ok. Code should include
for(col=0;col<EXAMS;col++){
printf("\nExam score : ");
scanf("%d",&grade[row][col]);
Thanks Murtan for correcting me. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 I think i have only corrected the code which was posted .I didn't post the code required which includes the storing the names and numbers of the students so you need not worry about that. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 The later code posted had some changes to that posted before.The output had 15 grades as required.
Please feel free to check the code. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 The above code was executed succesfully. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 Just one mistake i forgot to correct was there after removal of the code is
#include<stdio.h>
#include<conio.h>
#define MAXSTUDENTS 15
#define EXAMS 4
int main(void){
char name[20];
int... |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 for(row=0;row<MAXSTUDENTS;row++){
printf("\nEnter First name : ");
scanf("%s",name);
As this works in single dimension similarly the below code will work in the two... |
Forum: C Jan 21st, 2009 |
| Replies: 4 Views: 469 Thats the simplest method as stated niek_e
And after that it all depends that on tricks you apply to solve. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 I have made some corrections in the beginning
int grade[MAXSTUDENTS][EXAMS],total=0,row,col; |
Forum: C++ Jan 21st, 2009 |
| Replies: 9 Views: 596 You can also see directories in the compiler and check the path in which your compiler is stored |
Forum: C Jan 21st, 2009 |
| Replies: 10 Views: 769 while the file is being read if in between it is closed then how it will be able to read and perform other functions.
I think you should use fread() function to read the files. |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 I have stated it already in my code |
Forum: C Jan 21st, 2009 |
| Replies: 11 Views: 706 You can enter the first mobile number
scanf("%d",&mobileno[0];
rest all the numbers will be as
for(i=0;i<n;i++)
mobileno[i+1]=mobile[i]+1; |
Forum: C Jan 21st, 2009 |
| Replies: 20 Views: 1,130 your corrected code id
#include<stdio.h>
#include<conio.h>
#define MAXSTUDENTS 15
#define EXAMS 4
int main(void){
char name[20];
int grade[MAXSTUDENTS][EXAMS],total=0,row,col;
float ave; |
Forum: C++ Jan 21st, 2009 |
| Replies: 1 Views: 616 http://www.velocityreviews.com/forums/t149681-benefits-of-inner-classes.html |
Forum: C Jan 21st, 2009 |
| Replies: 3 Views: 471 What code or method you tried until now?? |
Forum: C Jan 21st, 2009 |
| Replies: 4 Views: 381 Yes Syntax error in if statement. |
Forum: C Jan 21st, 2009 |
| Replies: 14 Views: 1,188 If the above method is not working then you must go for closing and reopening of the file when it gets updated |
Forum: C Jan 19th, 2009 |
| Replies: 3 Views: 917 You can use FILE structure to store your records by writing in the file.
Read the file to print the output . |
Forum: C Jan 19th, 2009 |
| Replies: 5 Views: 723 Is it the programming question or mathematical question?? |
Forum: C Jan 19th, 2009 |
| Replies: 2 Views: 350 http://aelinik.free.fr/c/ch01.htm |
Forum: C Jan 19th, 2009 |
| Replies: 13 Views: 12,238 @dileepkumar
use the code tags.
and avoid the use of goto in the program. |