What happens if a header file is included twice?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display the numbers having digit 9 in the given range from 1 to 100
Write code for atoi(x) where x is hexadecimal string.
What is structure of c program?
is it possible to create your own header files?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain the difference between the local variable and global variable in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
What is far pointer in c?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
write a c program to convert fahrenheit to celsius?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
can we access one file to one directory?