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
What is %d called in c?
5) 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.without using big int and exponential function
Why shouldn’t I start variable names with underscores?
write a program to copy the string using switch case?
Describe how arrays can be passed to a user defined function
what do u mean by Direct access files? then can u explain about Direct Access Files?
Can you mix old-style and new-style function syntax?
How many keywords (reserve words) are in c?
Write a code to generate a series where the next element is the sum of last k terms.
What is the -> in c?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }