What is local and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is anagram in c?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }
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); }
How can you be sure that a program follows the ANSI C standard?
Explain the properties of union.
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
to find the program of matrix multiplication using arrays
What are the different types of constants?
Why do we use return in c?
Explain what is #line used for?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
Why do we use null pointer?