Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
3 Commented Posts
0 Endorsements
Ranked #4K
~3K People Reached
Interests
listing sogs,reading ,making programs
Favorite Tags

17 Posted Topics

Member Avatar for nitu_thakkar

hi... every one Can anyone reply me that why can't we take 'con' as folder name Or any file name....?

Member Avatar for BlackHawck
0
338
Member Avatar for divyasrinivasan

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 …

Member Avatar for mail2saion
1
187
Member Avatar for nitu_thakkar

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 …

Member Avatar for nitu_thakkar
0
162
Member Avatar for nitu_thakkar
Member Avatar for nitu_thakkar
0
146
Member Avatar for nitu_thakkar

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

Member Avatar for Narue
0
82
Member Avatar for moonw3ll

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 * ** *** …

Member Avatar for moonw3ll
0
258
Member Avatar for asharrajpoot

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]

Member Avatar for me_ansh
0
188
Member Avatar for taichou

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 …

Member Avatar for ajay.krish123
0
125
Member Avatar for nitu_thakkar

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

Member Avatar for MosaicFuneral
0
142
Member Avatar for Umeed Alam

provide some more information .......! such as programme coding & provide which kind of error is occured

Member Avatar for Umeed Alam
0
116
Member Avatar for nitu_thakkar

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"); …

Member Avatar for Ancient Dragon
-1
136
Member Avatar for nitu_thakkar
Member Avatar for RenFromPenn

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) { …

Member Avatar for Aia
0
189
Member Avatar for nitu_thakkar

hello, i wann know that how 'compiler control directives' preprocessor is actually worked ......? in 'C' language

Member Avatar for ddanbe
0
146
Member Avatar for nitu_thakkar
Member Avatar for Smurf_UK
0
233
Member Avatar for gary63
Re: hi

there may be virus problem or may be you have set the time for automatic shut down the pc

Member Avatar for caperjack
0
85
Member Avatar for BevoX

use the free() function for delete the space occupie by pointer syntax : free(pointer name)

Member Avatar for BevoX
0
122

The End.