What is structure packing in c?
No Answer is Posted For this Question
Be the First to Post Answer
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Write a program to swap two numbers without using third variable in c?
What is the difference between array and linked list in c?
The statement, int(*x[]) () what does in indicate?
What is a node in c?
How to write a program to receive an integer & find its octal equivalent by using for loop?
What is wrong with this initialization?
Define Spanning-Tree Protocol (STP)
write a program to display & create a rational number
How the c program is executed?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
Explain how can I manipulate strings of multibyte characters?