Why header files are used?
No Answer is Posted For this Question
Be the First to Post Answer
What are integer variable, floating-point variable and character variable?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
main() { float a=3.2e40; printf("%d",a); }
what is difference between array of characters and string
write a program to print infinte number
Why c language is called c?
What is the general form of a C program?
Why is sizeof () an operator and not a function?
how can i sort numbers from ascending order and descending order using turbo c..
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
find the minimum of three values inputted by the user