Explain how can a program be made to print the name of a source file where an error occurs?
No Answer is Posted For this Question
Be the First to Post Answer
What the advantages of using Unions?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What does printf does?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
Explain the difference between malloc() and calloc() in c?
Why string is used in c?
what are two kinds of java
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
List the difference between a "copy constructor" and a "assignment operator"?
find the sum of two matrices and WAP for it.