What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
mplementation of stack using any programing language
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
where are auto variables stored? What are the characteristics of an auto variable?
Explain what are the advantages and disadvantages of a heap?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
write a progam to display the factors of a given number and disply how many prime numbers are there?
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
What are the types of c language?
write a program to interchange the value between two variable without using loop
What is the use of getchar() function?