In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
No Answer is Posted For this Question
Be the First to Post Answer
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
What's a good way to check for "close enough" floating-point equality?
How can I call fortran?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What is far pointer in c?
What are header files and what are its uses in C programming?
what is the output of below int n=10; (n++)++; printf("%d",n);
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What is a MAC Address?
What are qualifiers?
Why do we need volatile in c?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program