shorting algorithmS
in iso what are the common technological language?
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); }
Is printf a keyword?
Describe wild pointers in c?
What is Lazy evaluation in C? Give an example.
how to write a program which adds two numbers without using semicolon in c
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
Which programming language is best for getting job 2020?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
Is null equal to 0 in sql?
What is the equivalent code of the following statement in WHILE LOOP format?
What is the difference between functions abs() and fabs()?