How can you be sure that a program follows the ANSI C standard?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the difference between far and near ?
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)
write a program to remove duplicate from an ordered char array? in c
What is .obj file in c?
Explain the difference between struct and union.
Three major criteria of scheduling.
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
write a program to compare 2 numbers without using logical operators?
Write a program of prime number using recursion.
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
how can we use static and extern?and where can we use this?
How is a macro different from a function?