What is an endless loop?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of bitfields & where do we use them?
Can we include one C program into another C program if yes how?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(
How would you sort a linked list?
What is #include stdio h and #include conio h?
write a program for egyptian fractions in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Can i use “int” data type to store the value 32768? Why?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value