uday.bidkar
Member
- Member since
- Nov 4, 2006
- Last active
- Jun 12, 2011
- Total activities
- 0
Activity feed
Recent contributions
-
#Threads
c215ab26-5665-4ae6-ade3-4d846a0fd6cd
Refer <a href="https://en.wikipedia.org/wiki/Wake-on-LAN" target="_blank" rel="nofollow noopener noreferrer">Wake On Lan</a> for remotelyturning on the computer...
-
#Threads
105d4d92-d882-4523-8601-0379cea65659
Here goes the final cut. Removed couple of bugs and improved it to get the final solution at one go. Plz test...
-
#Threads
41663d46-9672-451e-bfa5-c95748bdaf6d
Re: Write a C program Remove the "require_once 'common.php';" line from PHP code i posted before trying the code at your end
-
#Threads
ab44257d-4840-4f33-802f-f50474fd7056
Put the known values in the matrix at appropriate location and keep the unknown values as zeros
-
#Threads
8ce156b1-1f56-4728-9023-092d3950f728
Re: Write a C program The post still remains open for C program
-
#Threads
43d28d5c-7a8d-49f5-a7af-53d2d869b1e4
That's strange, did you fill the matrix with sudoku first?
-
#Threads
65bf603a-5a5e-4af6-a0d0-17be81ff918d
Re: Write a C program Solution in PHP, (I am loving this language š) <?phprequire_onceĀ 'common.php';$solĀ =Ā array();$final_solĀ =Ā array();$nĀ =Ā 4;Ā ...
-
#Threads
Sudoku solver
Wrote a sudoku solver. It does solve some sudokus (may be "easy" level) but gets stuck while solving few sudokus giving user...
-
#Threads
Representing number as sum of smaller numbers
Write a C program that will take a positive integer(N) as input and output the number of ways that integer can be...
-
#Threads
53e1c15f-13fa-4ac1-a269-ce5e1f79d975
Time to post the answer and here it is... int main() { int i ; printf("Enter two numbers\n"); printf("Sum is %d\n",(scanf("%d",&i)?i:0) +...
-
#Threads
cd290b46-9b02-416e-b308-5812f5b045ab
DEPplease please please tell the answer. am dying to know it.Here is answer to the problem when variable is not already declared....
-
#Threads
e093f153-b04e-4a33-a29c-c331a9ef7f54
DEPhi uday, i have tried a lot to solve this problem and believe me whether you accept it or not pointers is...
-
#Threads
f557f606-6d95-49f5-8cd5-29c8ce2e4cb3
sahanahi, i have used the consecutive memory location of i to store the 2 data.this works. #include<stdio.h> #include<conio.h> void main() { int...
-
#Threads
00f81e28-dded-4e78-8374-3d44594df441
sahanathanks a ton uday, i now hav a new problem.now what do i do if i want to set the caption name...
-
#Threads
Find sum of two numbers
#include<stdio.h> int main() { int i; printf("Enter 2 numbers\n"); /* Write here few lines of code so that user gives 2 numbers...
-
#Threads
7f42184e-2a3b-4c30-84b1-3d42db21b3cd
sahanahi to all. i want to get the caption of my button control during runtime i.e when i execute.can anyone help me...
-
#Threads
dfae03eb-bdd9-48a8-9d46-f3b6d77d3dd3
MayankWrite an efficient way to print 32 bitwise representation of an integer exactly as stored in the memory[O/p should be in Binary]....
-
#Threads
688cba20-1c98-41ee-bb51-37c62365ab3f
pradeep_agrawalA more optimized and simple solution š: void printbits(int num) { for(unsigned int i = ~(((unsigned int)-1)/2); i; printf("%d", num&i ? 1...