Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. varalamahesh

    c programming

    good compiler>>> i am using borland c++ compiler and sys config win XP SP 2,512MB RAM Microsoft Win XP dos version 5.1.2600 Tell me suitable compilers and also downloading links,, Thank you Very Much..! Reading Book: Let US C-8th edition written by YASHVANTH KANETKAR I AM Collecting W.Kernighan...
  2. varalamahesh

    c programming

    tell me some best c and c++ books....
  3. varalamahesh

    c programming

    #include<stdio.h> void disp(int *); void main() { int i; int marks[]={556,65,75,56,78,78,90}; for(i=0;i<=6;i++) disp(&marks[i]); } void disp(int *m) { show(&m); }
  4. varalamahesh

    c programming

    look below code. In The book He said "The programe is only partly complete. You are require to write the function show(); on your own. try your hand at it.http://s342.filesonic.in/download/4715844305/50034d4e/1191612d1/20f7173/1/1b7b60ab/0/336f31e8f88d8f3ca364d02a8d6bd875b4faa14c
  5. varalamahesh

    c programming

    Function "show" should have a prototype? give me an example..?
  6. varalamahesh

    c programming

    thanks ArkM...!
  7. varalamahesh

    c programming

    ?
  8. varalamahesh

    c programming

    #include<stdio.h> #include<conio.h> #define HLINE for(i=0;i<78;i++) printf("%c",196); #define VLINE { gotoxy(X,Y); printf("%c",179); } void main() { int i,y,X,Y; clrscr(); gotoxy(1,12); /*position cursor in row x and column y */ HLINE for(y=1;y<25;y++) VLINE(39,y); } this programme...
  9. varalamahesh

    c programming

    i am doing some mistake's in the programme "%C" "$c" here i have a little doubt..... Data Type Format Signed char - %c unsigned char -%c is right? i miss some printing in The book...!
  10. varalamahesh

    c programming

    i am doing some mistake's in the programme "%C" "$c" here i have a little doubt..... Data Type Format Signed char %c unsigned char %c is right? i miss some printing in The book...;!
  11. varalamahesh

    c programming

    Thanks ArkM ,Sam and Durin.....! Lokk below code...! #include<stdio.h> #include<conio.h> #define HLINE for(i=0;i<79;i++) printf("\n%c",196); #define VLINE { gotoxy(X,Y); printf("%C",179); } void main() { int y; clrscr(); gotoxy(1,12); /*position cursor in row x and Column y*/ HLINE...
  12. varalamahesh

    c programming

    Thanks Sam.......!
  13. varalamahesh

    c programming

    same problem.....! my sys config: Windows XP SP2 32-bit Pentium $ rocessor #include<stdio.h> void main() { int goals; printf("\n Enter no of goals scored against india:"); scanf("%d",&goals); if(goals<=5) goto sos; else { printf("Abount time soccer plyerslearnt C.\n"); printf("\n...
  14. varalamahesh

    c programming

    same p[roblem....! exit(0); i am using borland c++.. Windows XP sp2 32 bit pentiuim4 processor #include<stdio.h> void main() { int goals; printf("\n Enter no of goals scored against india:"); scanf("%d",&goals); if(goals<=5) goto sos; else { printf("Abount time soccer plyerslearnt...
  15. varalamahesh

    c programming

    I am learning C Language My self....> Look below proogramme....! #include<stdio.h> void main() { int goals; printf("\n Enter no of goals scored against india:"); scanf("%d",&goals); if(goals<=5) goto sos; else { printf("Abount time soccer plyerslearnt C.\n"); printf("\n amd said...
  16. varalamahesh

    c programming

    /* odd loop using a for loo[ */ #include<stdio.h> void main() { char another='y'; int num; for(;another=='y';) { printf("\n Enter a NUmber "); scanf("%d",&num); printf("\nSquare of %d is %d",num,num*num); printf("\nwant to enter another number u/n"); scanf("$d",&another); } }...
  17. varalamahesh

    c programming

    also provide below progrmmes....! thank you.....1 /* Odd loop using a while loop */ #include<stdio.h> void main() { char another='y'; int num; while(another=='y') { printf("\n Enter a Numer "); scanf("%d",&num); printf("\n Square of %d is %d.",num,num*num); printf("\n Want to enter...
  18. varalamahesh

    c programming

    Thanks ArkM.....! /* Excution a loop for unknow number of times */ #include<stdio.h> void main() { char another; int num; do { printf("\n Enter a number:"); scanf("%d",&num); printf("\nSquaaare of %D is %d",num,num*num); printf("\n wanr to enter another Number y/n")...
  19. varalamahesh

    c programming

    exit(); should have a prototype> provide this...? i am kid in c programming
  20. varalamahesh

    c programming

    exit*(; should have a prototype? please provide this...

Part and Inventory Search

Back
Top