Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for neeraj goswami

//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 …

0
63
Member Avatar for neeraj goswami

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

Member Avatar for skilly
0
56
Member Avatar for saravinuya

Can someone help me with my program. I have the code but there are some logical errors. The program should contain 100 numbers that have a menu, first the user should input a number then the menu will show: 1. it adds again a number, 2. it displays all the …

Member Avatar for dev90
0
240
Member Avatar for compzets

[CODE]#include<stdio.h> int main() { int n,i,c=0; printf("\nEnter a no:"); scanf("%d",&n); for(i=1;i<n;i++) { if(n%i==0) { c=c+i; } } if(n==c) printf("\nPerfect no."); else printf("\nNot a perfect no."); }[/CODE]

Member Avatar for cse.avinash
0
191
Member Avatar for neeraj goswami

[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]; …

Member Avatar for neeraj goswami
0
282
Member Avatar for bckc

Hi guys, I started learning C a few days ago, watching as many youtube tutorials as possible but there aren't many tuts on youtube :/ Can anyone recomend me a good book or list of tutorials? I started to read "The C Programming Language" by dennis ritchie but It's a …

Member Avatar for cse.avinash
0
172
Member Avatar for monica sri

[CODE]#include<stdio.h> int main() { printf("hai;"); return 0; } when i compile this using dev c++ i get a error message as [build error][project.exe]error1 [/CODE]

Member Avatar for neeraj goswami
0
102
Member Avatar for neeraj goswami

[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; …

Member Avatar for N1GHTS
0
154
Member Avatar for neeraj goswami

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 …

Member Avatar for NormR1
0
118