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
Write a code of a general series where the next element is the sum of last k terms.
Which type of language is c?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
write a c program to print "Welcome" without using semicolon in the whole program ??
What is s in c?
How does C++ help with the tradeoff of safety vs. usability?
What is getch () for?
How to write the code of the program to swap two numbers with in one statement?
What is the use of #define preprocessor in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?