Explain 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
How can I get random integers in a certain range?
What are file streams?
what is meant by c
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
Write a pro-gramme to determine whether the number is even or odd?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
What is the purpose of main() function?
What’s the special use of UNIONS?
What is the ANSI C Standard?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits