Explain 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
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What is storage class?
How can a string be converted to a number?
what is the difference between class and unio?
How do I get an accurate error status return from system on ms-dos?
can we access one file to one directory?
What are the basic data types associated with c?
What are the application of c?
How do we open a binary file in Read/Write mode in C?
What is indirect recursion? give an example?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is a const pointer, and how does it differ from a pointer to a const?