How to define structures? ·
No Answer is Posted For this Question
Be the First to Post Answer
What is cohesion and coupling in c?
Is c compiled or interpreted?
What does %d do in c?
What is the difference between far and near in c?
Write a program to reverse a given number in c language?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
Why do we write return 0 in c?
What is a sequential access file?
Explain how can I write functions that take a variable number of arguments?
What is the benefit of using const for declaring constants?
Why isnt there a numbered, multi-level break statement to break out
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }