What does emoji p mean?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can a program be made to print the name of a source file where an error occurs?
What is an identifier?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Explain a pre-processor and its advantages.
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is the difference between typedef struct and struct?
What are examples of structures?
praagnovation
swap two integer variables without using a third temporary variable?
read an array and search an element
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
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); }