What is a structure and why it is used?
No Answer is Posted For this Question
Be the First to Post Answer
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
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.
What are terms in math?
What are keywords in c with examples?
Explain what is the benefit of using #define to declare a constant?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
What is the use of a static variable in c?
can i know the source code for reversing a linked list with out using a temporary variable?
There seem to be a few missing operators ..
write a program to check whether a number is Peterson or not.
What is console in c language?