Explain what are its uses in c programming?
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.
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
In C programming, what command or code can be used to determine if a number of odd or even?
How main function is called in c?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is null pointer in c?
What is the best way to store flag values in a program?
What is the difference between void main() and void main (void) give example programme?
What are types of structure?
Why is sprintf unsafe?
what is difference between overriding and overloading?