the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
No Answer is Posted For this Question
Be the First to Post Answer
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
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?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
What are identifiers in c?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Tell me can the size of an array be declared at runtime?
When should structures be passed by values or by references?
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
Who is the founder of c language?
When do we get logical errors?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }