How to Display Number or Character as Password Form As Website?
only One value print as '*'
How to allocate Block of memory With malloc Function?
Wich Following option We Check The Last Node of Linklist is NULL?
HINT:::"In While loop ";
How to declare Link list and Memory allocate with malloc In C Language?
Two Element of Command line Argument{CMD}
Determine the following code Work?
void p() // Function Body
{
q->next=(struct NODE *)malloc(sizeof(struct NODE));
printf("\n Enter Number");
scanf("%d",&q->number);
q=q->next;
q->next=NULL;
}
How to find Binary Without Using This things:{UDF,%,Suming of Numbers}?
Assume Two Class {Class A,Class B}
Create the Class B's Object
Now Question is How to Call A's Constructor Without Creating Object of A?
Statck Also Know As
what is effect of this code::::::::
FILE *file_pointer;
char hi[10]="HI"
int i=0;
clrscr();
do{
file_pointer=fopen("text.txt","w");
fprintf(file_pointer,"%s",hi);
}while(i++<5);
fclose(file_pointer);
}