Are the variables argc and argv are local to main?
No Answer is Posted For this Question
Be the First to Post Answer
What are types of preprocessor in c?
what are the advantages of a macro over a function?
what are the interview question's in the language c
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
HOW CAN ADD OUR FUNCTION IN LIBRARY.
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
What is the difference between class and object in c?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What will be your course of action for a push operation?
Why do we use int main instead of void main in c?
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
What is the heap in c?