How can a program be made to print the line number where an error occurs?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of keyword 'register' with respect to variables.
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
What is the difference between #include and #include 'file' ?
write a program to display & create a rational number
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
write a program to generate address labels using structures?
Write a program to check armstrong number in c?
What is selection sort in c?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
hi send me sample aptitude papers of cts?
can we initialize all the members of union?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3