What is 'bus error'?
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this statement? Myname = 'robin';
what is the difference between getch() and getchar()?
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
Is null valid for pointers to functions?
What is extern storage class in c?
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
wite a programme in c to linear search a data using flag and without using flags?
What is a good data structure to use for storing lines of text?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How can you tell whether a program was compiled using c versus c++?