What are the scope of static variables?
No Answer is Posted For this Question
Be the First to Post Answer
Explain 'far' and 'near' pointers in c.
what is the difference between #include<stdio.h> and #include "stdio.h" ?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
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;
Give differences between - new and malloc() , delete and free() ?
What are run-time errors?
How can I find out the size of a file, prior to reading it in?
Why is extern used in c?
What is difference between structure and union with example?
What is the use of sizeof?
Why is malloc used?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.