- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
- Interests
- listing sogs,reading ,making programs
17 Posted Topics
hi... every one Can anyone reply me that why can't we take 'con' as folder name Or any file name....? | |
Re: this code may help you to find your solution [code=asp.net]<%@Import Namespace= "System.Data.Oledb" %> <%@ Page Language="VB" AutoEventWireup="false" CodeFile="datagrid.aspx.vb" Inherits="datagrid" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat ="server" > Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim conathors As New OleDbConnection Dim … | |
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 for that i have do some coding but i can't get the exatly petern.. pls … | |
hi... my question is how many total control can be taken in single form | |
hello everone i'm new to c++ language Is This possible to make prg in cpp to overload () Opratore if yes, then can u pls give any logical flow for develope the prg i.e. which kind of opeartion can be performed through () opratore thanx in advance | |
Re: 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 if user enter : 4 no. then out put must be like * ** *** … | |
Re: i have do some modifiaction so try this.... [code=c] #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(); for (row=1;row<=7;row++) { for(col=65;col<=st;col++) { printf("%c ",col); } for(b=1;b<mid;b++) { printf(" "); } for(sp=col-1;sp>end;sp--) { printf("%c ",sp); } st--; mid+=2; a++; /*end++;*/ printf("\n\n"); } getche(); } [/code] | |
Re: 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 [code=c] for(i=0;str[i]!='\0';i++) /*loop will be continue untill the it not found the null charater from str string*/ { for(j=1;str[j]!='\0';j++) { if(str[j]>str[i]) /*chack whether the … | |
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 shifted value... in other variable...? please help me to solve this query | |
Re: provide some more information .......! such as programme coding & provide which kind of error is occured | |
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....? [code=c] #include<stdio.h> #include<conio.h> #include<stdlib.h> void main(char *argv[]) { FILE *fp1,*fp2; char c; int i; clrscr(); fp1=fopen(argv[1],"r"); rewind(fp1); fp2=fopen(argv[2],"w"); if(fp1==NULL) { printf("Source File is Not Exist"); … | |
| |
![]() | Re: this example will help you to understand your query [code=c] #include<stdio.h> #include<conio.h> #include<alloc.h> #include<stdlib.h> struct element { int info; struct element *next; }*start,*temp; typedef struct element node; void create(); void insert(); void dele(); void display(); void main() { int ch; clrscr(); while(ch!=5) { printf("\nEnter Your Choice"); printf("\n1.Create\n2.Insert\n3.Delete\n4.Display\n5.Exit"); scanf("%d",&ch); switch(ch) { … |
hello, i wann know that how 'compiler control directives' preprocessor is actually worked ......? in 'C' language | |
| |
Re: there may be virus problem or may be you have set the time for automatic shut down the pc | |
Re: use the free() function for delete the space occupie by pointer syntax : free(pointer name) |
The End.