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));}
Answers were Sorted based on User's Feedback
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What the advantages of using Unions?
A stack can be implemented only using array?if not what is used?
Define macros.
What is the need of structure in c?
What is pointer & why it is used?
which one low Priority in c? a)=,b)++,c)==,d)+
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What is identifiers in c with examples?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Identify the operators that is not used with pointer a. && b. # c. * d. >>