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
Can we change the value of #define in c?
How to add two numbers with using function?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Difference between fopen() and open()?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Explain setjmp()?
What are the disadvantages of external storage class?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is the benefit of using const for declaring constants?
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
Differentiate b/w Modify and Update commands giving example.