What is 'bus error'?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
. Write a program to get a string and to convert the 1st letter of it to uppercase
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
LOGIC OF Bodmas?
Difference between Shallow copy and Deep copy?
How can you draw circles in C?
What is a pointer?
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
Explain the difference between null pointer and void pointer.
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
How variables are declared in c?
what is the use of ‘auto’ keyword?