-
What are the advantages of auto variables?
1)The same auto variable name can be used in different blocks2)There is no side effect by changing the values in the blocks3)The memory is economically used 4)Auto variables have inherent protection because of local scope
-
-
-
-
-
Read data in mdb file
How to access and read data in mdb file from C?
-
-
-
Calendar Program
Develop a program that receives the month and year from the keyboard as integers and prints the calendar in the following format March 2006 Mon Tue Wed Thu Fri Sat Sun 1 2 3 4 5 6 7 8 9 10 ...
-
What is a static function?
A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. If the function or variable is visible outside of the current source file, it is said to have global, or external, scope. If the function or variable is not visible outside of the current source file, it is said to have local, or static, scope.
-
-
-
What is pseudo code ?
Explain with an example and how to develop the program
-
-
-
Object creation
How can we stop the user make an object on stack, i.e. user must be able to create the object on heap only.
-
-
C logic help
In this x is the input and F(X) is the output,tab_func(sin, 0.0, PI, PI/8.0) is the method i have to use to get a output.Plz give me the relation b/w x and F(x).A function which will tabulate values of any given function from a given startingvalue up to (and including) a given final value. The size of the each step from thestarting value to the final value should also be a parameter of the function.For...
-
-
C Interview Questions
Ans