#include<stdio.h>
#include<conio.h>
void main()
{
float a;
clrscr();
a=0.5;
if(a==0.5)
printf("yes");
else
printf("no");
getch();
}
Post New Answer View All Answers
Explain what is the difference between text files and binary files?
Explain how can a program be made to print the line number where an error occurs?
Can you define which header file to include at compile time?
What is the difference between malloc() and calloc() function in c language?
What is assignment operator?
Describe static function with its usage?
Differentiate between static and dynamic modeling.
What are the types of variables in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Can you please compare array with pointer?
Explain how can you avoid including a header more than once?
Explain About fork()?
Can we assign string to char pointer?
What is an expression?