What is the value of h?
No Answer is Posted For this Question
Be the First to Post Answer
Can you please explain the difference between malloc() and calloc() function?
what value is returned to operating system after program execution?
Explain how do you declare an array that will hold more than 64kb of data?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
What are local static variables? How can you use them?
How can I pad a string to a known length?
what is const volatile?
what are the difference between ANSI C and Let Us c and Turbo C
main() { intj; while9j<=10) { printf("\n%d",j); j=j+1; } }
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?