What is the difference between formatted&unformatted i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need a structure?
hat is a pointer?
write a 'c' program to sum the number of integer values
What are actual arguments?
How can I find the modification date of a file?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
How to swap 3 numbers without using 4th variable?
Is c still used?
What does the error 'Null Pointer Assignment' mean and what causes this error?
what is the difference between class and unio?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)