Answer Posted / manoj pasumarthi
C is a structured, procedural programming language that has
been widely used both for operating systems and applications
and that has had a wide following in the academic community.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is the difference between volatile and const volatile?
How can I sort more data than will fit in memory?
How do you initialize pointer variables?
How can I prevent another program from modifying part of a file that I am modifying?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Can we declare variables anywhere in c?
How can I insert or delete a line (or record) in the middle of a file?
Explain what is wrong with this program statement? Void = 10;
What are the rules for identifiers in c?
Explain the use of fflush() function?
What is the size of empty structure in c?
What is %d called in c?
How can I write functions that take a variable number of arguments?
Write a program to print “hello world” without using semicolon?