Forum: C Mar 15th, 2009 |
| Replies: 2 Views: 338 @monkey_king
( thnax for ur reply )
my pertern should be look like when i give
no=7
then out put is look like |
Forum: C Mar 12th, 2009 |
| Replies: 2 Views: 338 i have to make one prg in c
that accept only odd number (no) which is (4>no>30) & have to
genrate the pertern which is given below
when no=7 then given petern should be genrated
... |
Forum: C Feb 2nd, 2009 |
| Replies: 23 Views: 1,096 you can make the prgs like
1) find factorial of given no.
2) find that given no. is prime or not
3) find given no. is pelindrome or not
or you can makes prg like |
Forum: C Jan 18th, 2009 |
| Replies: 6 Views: 578 sorry for mistake but my actually question is,
i want to make one program binary no.s multiplication
(using register method)
i have to follow some rules,
no1=1010 |
Forum: C Jan 16th, 2009 |
| Replies: 6 Views: 578 suppose i want to do shift left opeartion on
x=1010
y=x<<1
it will shift left the value
& make x=0100 but how can i store that |
Forum: C Jan 9th, 2009 |
| Replies: 9 Views: 636 first intialize one string such as str[12]
take two variable of integer type such as i,j
take one temporary variable of char type such as temp
for(i=0;str[i]!='\0';i++) /*loop will be... |
Forum: C Jan 8th, 2009 |
| Replies: 10 Views: 746 i have do some modifiaction so try this....
#include<stdio.h>
#include<conio.h>
void main(void)
{
int row=0,col=0,sp=0,a=65,b,mid=1,st=71,end=64;
clrscr(); |
Forum: C Jan 6th, 2009 |
| Replies: 3 Views: 812 i have tried it but there is no change i got the same massage
here, getc() function used for get the value from existing file ,
character by character & put into new file
( which is given... |
Forum: C Jan 5th, 2009 |
| Replies: 3 Views: 812 this coding is about copy one existing file into other file
but it can't do so throught the command line arg. what is
the solution....?
... |
Forum: C Jan 5th, 2009 |
| Replies: 7 Views: 781 this example will help you to understand your query
#include<stdio.h>
#include<conio.h>
#include<alloc.h>
#include<stdlib.h>
struct element
{
int info; |
Forum: C Jan 5th, 2009 |
| Replies: 1 Views: 338 hello,
i wann know that how 'compiler control directives' preprocessor
is actually worked ......? in 'C' language |