- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 12
- Posts with Downvotes
- 4
- Downvoting Members
- 9
13 Posted Topics
#include<stdio.h> #include<conio.h> void main() { int n,i,mod=0; clrscr(); printf("\n enter number="); scanf("%d",&n); for(i=1;i<n-1;i++) { mod=n%i; if(mod==0) { if((i*i)==n) { printf("\n square root=%d",i); } } } getch(); } meghs but one limitation in this code is this only find out the integer square root of the given number thanks
Hello Friends, i am working on my college project Online Sms Portal and i want to create a group sms facility and problem is that how can i make sms selector(or SMS TEMPLATE) like way2sms.com ?? in that when i click on the SMS and the particular sms display in …
patter like n=2 [CODE] * * * * * * * * * * * * * * * * [/CODE] pls help me in solve this program
1. command line program for match two string and also allow the character • * -- any number of character • ? – Single Character Ex.: I/p:- This is a string Th?s is *g O/p Both string are Same pls help me to solve this program in c
hi , i am using samsung samtron 55v monitor problem is that when i start my pc monitor light blinking and not display any thing although keyboard and mouse powred. i also check my monitor with my laptop it's work what the problem occur please tell as soon as possiable …
This program take user name and password from the use but the password not display on screen insted of password ***** display Program by Meghdoot(meghs)
My pc having 1gb of ram ,when i start my pc is show 256mb ram on booting. is this possiable to put ram on boot?? please help
[CODE=c]void main() { int a[20],i,j; for(i=0;i<10;i++) { cout<<"enter value"; cin>>a[i]; } for(i=0;i<10;i++) { cout<<"value="<<a[i]; } }[/CODE]
I have problem while i am making calendar program in program condition is that -> input month and year and display the calandar of given month pls post the source code
i can't remember exact formula of the pascal triangle if you know then please send me the formula and the pascal triangle code in c i think y=c*(y-x)/(x+1); this is wrong but you can modify and send me
[code] main() { int a[10],i,j,temp=0; clrscr(); // enterinr value to array for(i=0;i<10;i++) { printf("\n enter number="); scanf("%d",&a[i]); } // sorting array for(i=0;i<10;i++) { for(j=i+1;j<10;j++) { if(a[i]>a[j]) { temp=a[i]; a[i]=a[j]; a[j]=temp; } } } // printing array for(i=0;i<10;i++) { printf("\n%d",a[i]); } getch(); } [/code] I HOPE THIS IS HELPFUL TO YOU …
Please help me to solv this program known circular matrix input=3 output like 1 2 3 8 9 4 7 6 5
The End.
meghs007