What is scope of variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Explain the advantages and disadvantages of macros.
Why main is not a keyword in c?
Are there any problems with performing mathematical operations on different variable types?
The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
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 is meant by the "equivalence of pointers and arrays" in C?
What are the usage of pointer in c?
What is the use of sizeof?
main() { printf(5+"Vidyarthi Computers"); }
can we define a function in structure?