Which place is NOT associated with Gautama Buddha?
View Answer Report Error Discuss
What would be the output of the following program?
main()
{
float a = 0.7;
if ( a < 0.7f )
printf ( " C ");
else
Printf ( " C++ ");
}
C++
View answer Workspace Report Error Discuss
What's the maximum hard drive size for FAT16-based Windows system?
Maximum hard drive size for FAT16-based windows system is 2GB.
What can be swallowed but can swallow you?
Your Pride. Yes, you can swallow your pride or it can swallow you.
Who invented FM radio?
Who has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar"?
Abhinandan Varthaman who shot down the Pakistan's F-16 jet has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar".
Most medieval music was
Most medieval music was instrumental.
char a[] = "Visual C++";
char *b = "Visual C++";
printf ("\n%d %d", sizeof (a), sizeof (b));
printf ("\n%d %d", sizeof (*a), sizeof (*b));
11 2
1 1