How would you use the functions fseek(), freed(), fwrite() and ftell()?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
how to print a statement in c without use of console statement ,with the help of if statement it should print
What are predefined functions in c?
What is the mean of function?
What do you mean by Recursion Function?
What are qualifiers?
Who is the founder of c language?
State the difference between x3 and x[3].
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
Write a program to print prime nums from 1-20 using c programing?