No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
//take mob.no ,name ,bill amt #include<stdio.h> #include<conio.h> #include<string.h> struct mob1 { char mob[10]; char name[10]; float bill; }; int main() { struct mob1 a[30]={{'\0'},{'\0'},0.0}; void accept(struct mob1 a[30],int n); void display(struct mob1 a[30],int n); int append(struct mob1 a[30],int n); void selmob(struct mob1 a[30],int n); void srch(struct mob1 a[30],char [],int,int); void … | |
i am using windows 7 ,32 bit.some days ago i installed ie9 on my os .it worked well as again cracked.i uninstalled it ,and tried to install ie8 but ,i couldnt.i googled but could not found the right answer.problem is APPCRASH..please can anyone help me to sort out this problem | |
Re: check this ,u need to use int main when u are using return 0; so try to go through gud tutorials ,rest google for the syntax or online comolplier..[CODE] #include<stdio.h> int main() { int sub,total=0,choice; int numbers[100]; add: do{ printf("Key-in numbers:\n\n"); for(sub=0;sub<100;sub++) { scanf("%d",&numbers[sub]); printf("MENU"); printf("[1] Add Number."); printf("[2] Display … | |
Re: please specify what is the problem in the code .its running well.or your loop is not working properly? | |
[B]i have written one programm in c using structure to enter name and account number of the emplpyee.the programm shows an error which is filename.c:11 error:expected identifier or "("before"["token..i am not able to get the error...please clearify it.[/B][CODE] #include<stdio.h> #include<conio.h> #include<stdlib.h> main() { struct wipro { char name[20]; char accnum[10]; … | |
Re: if you are an indian .i would suggest you"c in depth "by Srivastav and Srivastav.dont go for "let's c"..it has very loopholes..this book will help you in learning c step by step. keep learning. | |
Re: i have also used devc++.its just a mess .i would suggest u download.QUENCY c.its gud and compatible with all os....but keep in mind to save the files in bin of that programm. | |
[CODE]//ASSIGNMENT NO- 4 //EMPLOYEE DATABASE #include<stdio.h> #include<conio.h> //STRUCTURE DEFINATION struct emp1 { int id; int dflag; char name[10]; float salary; }; int main() { //INITIALISATION struct emp1 e[20]={0,0,"\0",0.0}; int accept(struct emp1 [],int); int display(struct emp1 [],int); int append(struct emp1 [],int); int delete1(struct emp1 [],int,int); int modify(struct emp1 [],int,int); int no=0,v=0,u=0,ch=0,count=0; … | |
i am writing one java code in notecode.once i am compling the code in command prompt it is showing the following error: javac is not recognised as an internal or external command ,operable program or batch file. what does this mean?..i am using jre7 java version.i have also specified the … |
The End.