Explain what is the difference between a free-standing and a hosted environment?
No Answer is Posted For this Question
Be the First to Post Answer
Are enumerations really portable?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Describe static function with its usage?
what is the use of pointers
What are the concepts introduced in OOPs?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
How do you determine if a string is a palindrome?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Taking an example,differentiate b/w loader and linker ?
Why can arithmetic operations not be performed on void pointers?