What are structure types in C?
No Answer is Posted For this Question
Be the First to Post Answer
Can we assign string to char pointer?
how to create c progarm without void main()?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
How can I invoke another program from within a C program?
Can include files be nested? How many levels deep can include files be nested?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
count the numbers between 100 and 300, that star with 2 and ends with 2
How to implement a packet in C
What is echo in c programming?
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
Describe the steps to insert data into a singly linked list.
What is scope rule in c?