- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 11
- Posts with Downvotes
- 6
- Downvoting Members
- 5
29 Posted Topics
Hi every one, #include <stdio.h> #include <conio.h> #define SIZE 4 int main(){ char Menu[SIZE] = {'A','B','C','D'}; int i; for(i=0; i<(SIZE); i++){ // print the array elements printf("\t%c",Menu[i]); } getch(); } I want to swap the elements of the array for e.g. if I pass A and D or Menu[0], Menu[3], … | |
Hi, I want to know what is meant by a code footprint. I tried googling but all of them have explanations that I was really not able to understand. Can anyone please tell me what is means? How is it important and how can it be used(if at all it … | |
Re: The sensor in the ROM might be damaged. The drive is shown because all other hardware of the ROM is fine. You will have to get a new one or connect this one on an another PC, see if it works. All the best. | |
Re: [QUOTE=Esmerelda;1748301][code]main() { int a=5; a=++a + ++a; printf("%d",a); }[/code] the output is 14..how come?[/QUOTE] The explanation is only weird for the first time. i.e. ++a + ++a = 14 But if you debug and see the value of a, it will be 7 and after that if u add another … | |
Hi everyone, I am using a LCD from Sitronix ST7920. This LCD comes with some self-defined symbols, I want to know how can I retrieve the self-defined symbols from the LCD. | |
Re: It can see what you do when you are using it but not the history.....if you are afraid try clearing the browsing data. Btw What r u upto???? | |
Re: Download 'Driver Agent'. It automatically checks your system and recommends if there are any updates available for any of the hardware. Installing the drivers or not, is upto you. [URL="http://driveragent.com/?q=driver+agent"]http://driveragent.com/?q=driver+agent[/URL] | |
Re: The 'scanf' buffer gets full after you enter the name. So either flush it or use 'gets' function. All the best. | |
Re: Looks like you have not given the path for your included files. If you have moved your files then provide the new path like #include "../<folder name>/<filename>" P.S. The file should be in the same folder as that of your project. What IDE are you using? | |
Re: Are you trying to compare an element of a structure with a variable??? Post your entire code. | |
Hi everyone, I have a ADSL 2+ router from D-link, i have access to all the websites except [url]www.facebook.com[/url] and [url]www.orkut.com[/url] This is my personal computer so there is no chance of anyone blocking it. Can anyone enlighten me with what exactly is the problem??? :?: | |
Re: Go to command prompt and type the drive in which it is. Initially the command prompt will be like this [B]C:\<Users>\<....>\[/B] Enter the drive in which your USB is. For example if your USB is in F drive, then typr F:, the control comes to the F drive....Now type format … | |
Re: The problem is with the OS, you will have to re-install it or you might have changed the BIOS setting of your PC. | |
Re: Format your HD directly or from the Command Prompt | |
Re: The following link will answer all your questions [URL="http://http://www.redbooks.ibm.com/redbooks/pdfs/gg243376.pdf"]http://http://www.redbooks.ibm.com/redbooks/pdfs/gg243376.pdf[/URL] | |
Re: The problem is with the hardware. To be precise, its with the motherboard, try changing the cables or get the motherboard fixed. If its too expensive....its better to just live with it, get more out of it and then get a new one. All the best though. | |
Re: [QUOTE=pudgeeboy;1732049]the thing is, some of my mp3 files that are already stored in my flashdrive are just playing fine. the recently downloaded mp3 are the one that are having some problems playing. i just notice that the corrupted mp3 files has different bit rates(192kbps) compared to the okay ones. is … | |
Re: That port might have been disabled....enable it from the device manager and if you are running out of ports then get a USB hub | |
Re: if you are a developer then Xp will provide you with all the necessities like drivers etc. I am currently using Win 7 but i also have to run a Xp in a virtual box, because 7 is relatively new there a very few drivers available for it. Although if … | |
Re: Your compiler should have a graphics.h file (not there in Dev C) and you can find the programs over the internet or in some authors book. | |
Re: Run the task manager and see if there is a process "wscript.exe", if yes then end that process and remove the infected files from the system32 folder, but be careful deleting some files from there may affect your OS. You can clean up your disk to improve the performance a … | |
Re: You can try using "unsigned" but you will not be able to use negative numbers as well or you can give the numbers a range and anything outside the range will produce an error | |
Re: try this code :) [CODE]#include<stdio.h> #include<conio.h> #include<math.h> //****************************************************************************** // // gives a integer for a hexadecimal number // //****************************************************************************** int main(){ // // var decaration // int hex; while(1){ printf("\nEnter a hexadecimal number."); scanf("\n%x",&hex); printf("\nThe integer equivalent is: %d\n", hex); } getch(); }[/CODE] | |
Re: you should get 7 6 6 and its simply bcoz printf has the precedence from Right to Left. | |
Re: Try using the "Snapshot" Tool which is available with PDF. You cannot do the same if you are using google docs. | |
Re: Dude where is the '&' operator in the scanf function???? :-O | |
Re: You will have to create a project to convert it. Making a project is simple and since its a small app, there wont be much of a trouble.....you can choose the windows option when you start to make the project. All the best. | |
Re: Try plugging your monitor into another socket, the socket you are currently using may have some problem, if your monitor flickers also then its definitely the problem of the socket. Another possible problem could be with the electron gun of the CRT (i guess its a CRT). All the best.....I … |
The End.