What is the output for the below program?
void main()
{
float me=1.1;
double you=1.1;
if(me==you)
printf("love c");
else
printf("know c");
}
Answer Posted / kumar
love c
| Is This Answer Correct ? | 4 Yes | 11 No |
Post New Answer View All Answers
What is table lookup in c?
Which is better pointer or array?
Explain goto?
What are pointers? What are different types of pointers?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is c programming hard?
What are the main characteristics of c language describe the structure of ac program?
Does sprintf put null character?
What is the difference between procedural and functional programming?
What is double pointer in c?
What is difference between far and near pointers?
What does nil mean in c?
What is the default value of local and global variables in c?
What is extern keyword in c?
What is string concatenation in c?