Why does this code crash?
Can you please explain the difference between exit() and _exit() function?
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.
Why pointers are used in c?
What is conio h in c?
Explain a file operation in C with an example.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
How does free() know how many bytes to free?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Define circular linked list.
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
write a c program that prints all multiples of 3between 1 and 50.
Where is volatile variable stored?