I am new to C language. So need a complete book which can give me complete knowledge of it.
Waiting for your reply.
Which is the book for C language?
I learned C using books witten by Kris Jamsa.
Kris Jamsa has several books on C but I learned beginers stuff from "C the complete reference" series. I just checked amazon and there are some used versions of this book avalable for around $13
Everybody has his own style of learning so this might not work for you so I suggest you go to your local bookstore and see if you like the Kris Jamsa style. I had prior programming experience (BASIC) before I started C so some concepts I already knew.
Good Luck
plum
Sunday, July 12, 2009
How to write this using C language codes?
i am writing a program using C language
a part of the programm to enter names
whenever i enter a name with nombers the program accept it
i want a code or a solution for this prograam
i want the program give me error if i wrote a name includes numbers
How to write this using C language codes?
can you please clearly tell your exact problem
Reply:what???
this is a site to give you answers not to ask for a debuger
and btw dont use c++ use a data program like........... i dunno GOOGLE IT
Reply:You get help from http://ccietutorial.com/
a part of the programm to enter names
whenever i enter a name with nombers the program accept it
i want a code or a solution for this prograam
i want the program give me error if i wrote a name includes numbers
How to write this using C language codes?
can you please clearly tell your exact problem
Reply:what???
this is a site to give you answers not to ask for a debuger
and btw dont use c++ use a data program like........... i dunno GOOGLE IT
Reply:You get help from http://ccietutorial.com/
Write an interactive program in C language to manage the study centre?
Write an interactive program in C language to manage the study centre with menu options like student’s details, semester enrolled for, assignments submitted and marks obtained, attendance for the practical courses etc. using the file handling concepts. The application should be designed user-friendly
Write an interactive program in C language to manage the study centre?
I wouldn't write it in C. Sounds like a prime candidate for a database with a web base interface.
Reply:Sounds like a senior project.
This will take months to write
Write an interactive program in C language to manage the study centre?
I wouldn't write it in C. Sounds like a prime candidate for a database with a web base interface.
Reply:Sounds like a senior project.
This will take months to write
I want a program in "C" Language that reads 2 names into 2 string parameters then replaces between them
hi all
guess thats easy for some ppl, but not for me....
i just want to create a simple program in "C" language that reads 2 names with scanf function then it puts them into 2 string parameters then it replaces the names in the parameters with each others........
thats all
Notice,,,, the names' length isn't limited !!
thanks alot
I want a program in "C" Language that reads 2 names into 2 string parameters then replaces between them
#include %26lt;stdio.h%26gt;
void main()
{
char[] first, second, temp;
printf("Enter string: ");
scanf(%26amp;first);
printf("\n");
printf("Enter string: ");
scanf(%26amp;second);
printf("\n");
temp = second;
second = first;
first = temp;
}
guess thats easy for some ppl, but not for me....
i just want to create a simple program in "C" language that reads 2 names with scanf function then it puts them into 2 string parameters then it replaces the names in the parameters with each others........
thats all
Notice,,,, the names' length isn't limited !!
thanks alot
I want a program in "C" Language that reads 2 names into 2 string parameters then replaces between them
#include %26lt;stdio.h%26gt;
void main()
{
char[] first, second, temp;
printf("Enter string: ");
scanf(%26amp;first);
printf("\n");
printf("Enter string: ");
scanf(%26amp;second);
printf("\n");
temp = second;
second = first;
first = temp;
}
Login and password program in c language?
is there anyone who can give the code written in c language . The requirement ic that there sould be at leat 20 login's and passwords but the passwords consist of combination of uppercase , lowercase characters,digits and special characters.But the password should not be like 1234 or AAAA or 1111.
Login and password program in c language?
check out
http://krugle.com/
you will find tons and tons of Code
Reply:www.imada.sdu.dk/~svalle/courses/dm14-20... - 14k -
Reply:I have the one written in C++ but i doubt it works in C as it access the new library functions available in C++
Reply:try searching http://www.codeproject.com maybe they will have something that you are looking for. If its close, at least you can modify it to meet your requirements.
parts of a flower
Login and password program in c language?
check out
http://krugle.com/
you will find tons and tons of Code
Reply:www.imada.sdu.dk/~svalle/courses/dm14-20... - 14k -
Reply:I have the one written in C++ but i doubt it works in C as it access the new library functions available in C++
Reply:try searching http://www.codeproject.com maybe they will have something that you are looking for. If its close, at least you can modify it to meet your requirements.
parts of a flower
Pls tell me simple enimation c language program?
tell me animation simple program which run in c language . it will move by mose r any specific keay
Pls tell me simple enimation c language program?
instead of C language you must use C++ language for animations because in C++ there readymade functions.
if you are not satisfied then tell me i will show some tips on C++
ok
Pls tell me simple enimation c language program?
instead of C language you must use C++ language for animations because in C++ there readymade functions.
if you are not satisfied then tell me i will show some tips on C++
ok
Some good interesting projects in c language?
i got to make a project in c language. which should be of approximatily 2500 lines. so want some good ideas....with description.
Some good interesting projects in c language?
Try making a customer service ticking program using a que data structure. Allow "admins" a special password and clients open access. Basically a guest can fill out a ticket, and chose the priority (low,med,high,urgent) which would effect the position on where the request is placed in the que.
Well, i tried.
Reply:How about a memory manager? Re-write malloc and free to manage your own memory pool. This would be interesting since managing memory won't be that easy dealing with internal fragmentations and memory overflows. If thats not 2500 lines, then you can add dynamic memory management on top of that.
Good luck!
Reply:try something like a stack manager which consumes ow amount of memory
Reply:A good program would be one that creates sudoku puzzles, or one that solves the puzzles.
It would involve a decent amount of math and checking to validate that the puzzles are correct.
Reply:Dear Umang,
If you are familiar with Torrents, then these are the source to get the same. Else download a tool called uTorrent from http://www.utorrent.com/ or Bittorrent from www.bittorrent.com/download.ht...
Also switch over to Firefox as your Browser (You will like it), download it from www.mozilla.com/en-US/firefox/... Firefox has a Torrent Toolbar, which would be of great help to locate your required torrents.
There are also lots of Indian torrents containing Music, Movies and TV programmes.
Try the above, you will be able to download a lot of stuff you are interested in.
Some good interesting projects in c language?
Try making a customer service ticking program using a que data structure. Allow "admins" a special password and clients open access. Basically a guest can fill out a ticket, and chose the priority (low,med,high,urgent) which would effect the position on where the request is placed in the que.
Well, i tried.
Reply:How about a memory manager? Re-write malloc and free to manage your own memory pool. This would be interesting since managing memory won't be that easy dealing with internal fragmentations and memory overflows. If thats not 2500 lines, then you can add dynamic memory management on top of that.
Good luck!
Reply:try something like a stack manager which consumes ow amount of memory
Reply:A good program would be one that creates sudoku puzzles, or one that solves the puzzles.
It would involve a decent amount of math and checking to validate that the puzzles are correct.
Reply:Dear Umang,
If you are familiar with Torrents, then these are the source to get the same. Else download a tool called uTorrent from http://www.utorrent.com/ or Bittorrent from www.bittorrent.com/download.ht...
Also switch over to Firefox as your Browser (You will like it), download it from www.mozilla.com/en-US/firefox/... Firefox has a Torrent Toolbar, which would be of great help to locate your required torrents.
There are also lots of Indian torrents containing Music, Movies and TV programmes.
Try the above, you will be able to download a lot of stuff you are interested in.
Subscribe to:
Posts (Atom)