Hi
completed C subject in my Engineering:-D...
Today I developed a code, I'm getting array is too large and structure is too large.but i need large structures, or is there any alternative way?
the aim is to STORE log records(roll,time) from a fingerprint-based time attendance soft which...
Define a structure called c ricket the will describe the following information -
i) Player's name, ii) Country name, iii) Batting average.
Write a program that will store information of 25 players using this structure, also arrange and display names of these players in...
hi,
I have a problem in understanding the creation of object file just look at the code below. in the code below i have defined struct node in another C file. I have no any declaration of struct node in this code . But when i am compiling this code to generate the object code it is...
OUTPUT Of the Above Programm is
In-Order Traversal:
D B H E A F C G
I want to know How the Function BUILDTREE is Working, The Problem is When we Calling the Function buildtree recursively by the expression LINE 1,HOw Compliter would be Able to Read The LINE 2 and LINE 3, After Recursive...
i have a USB to ethernet device which i want to use in linux.
i downloaded the driver files from the net for the same but am unable to understand the instructions.
the instructions in the readme go as follows.
contents of the file named "Makefile"...
#include <stdio.h>
#include <conio.h>
#include <alloc.h>
/* structure containing a data part and link part */
struct node
{
int data ;
struct node * link ;
} ;
/* This is The Part of Programm*/
The Problem is when i m running This Program (of Linked List) Runs Properly But...
#include<conio.h>
#include<stdio.h>
struct name
{
char n[20];
};
function (int *n)
struct name *n
{
printf("%c",*n->n);
}
void main ()
{
struct name n
scanf("%c",&name.n);
function(&n);
}
this is a simple program in which i have to take user name then print it using pointer , function and...
*pastebin.com/m42b627b9
here when I compile it gcc gives the error "cannot convert to a pointer type" for line 24. I tried to find where struct sockaddr is defined but can't find. man pages say no thing about it.
Please help.
This code works fine on borlaand c++ 5.0 but it scans only first object in turbo c++ IDE
what is the problem with this..???
#include <stdio.h>
#include <conio.h>
struct student
{
char name[10];
int no;
float marks;
};
void main()
{
struct student s[5];
int i...
I m writing a program for various operations on linked list in C... Program is given below.. and i m getting one error and two warnings..
Plz see by executing it and help me to remove it and run the program successfully...
#include<stdio.h>
#include<conio.h>
struct node
{
int info;
struct node...
i wrote a program which is given below
#include<stdio.h>
#include<conio.h>
struct employee
{
char name[5];
char deptt[5];
int idcode;
float s;
};
void main()
{
struct employee emp[2];
int i,j;
clrscr();
for(i=0;i<2;i++)
{
gets(emp[i].name);
gets(emp[i].deptt);
scanf("%d",&emp[i].idcode)...
Can any of you check my BCA xcam project to find any bug ? I just completed this stuff using help from internet (answers) not sure are they correct or not !
Help will really be appreciated :-)
Question 1:
Write a C program to create a calculator. The program will accept an arithmetic...
Hi guys , plz see this code for me
The problem lies in the Inserting of node portion.
#include<iostream.h>
#include<conio.h>
#include<stdlib.h>
#include<stdio.h>
struct linklist
{ int data;
linklist *next;
};
typedef struct linklist node;
void create(node...
How to convert C code(given below) in java
C code:
struct structA {
int varA[4];
float varB[2];
}
struct structB {
int len;
structA varC[50];
}
void main {
structB varD[10];
.....
.....
somefunction(varD) {
.....
}
}
Here i have a structure A with variables of...
Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.