What's a good way to check for "close enough" floating-point equality?
No Answer is Posted For this Question
Be the First to Post Answer
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
How will you write a code for accessing the length of an array without assigning it to another variable?
Program to find larger of the two numbers without using if-else,while,for,switch
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Magic square
What is c language in simple words?
Write the Program to reverse a string using pointers.
formula to convert 2500mmh2o into m3/hr
can we write a program in c for printf and scanf without using header file stdio.h
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
What is the difference between getch() and getche()?