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 a null string in c?
Explain how can I open a file so that other programs can update it at the same time?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
What does s c mean on snapchat?
What is stack in c?
How can I get back to the interactive keyboard if stdin is redirected?
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
what are the compilation steps? ( i want inside the compiler )
Explain what is the purpose of "extern" keyword in a function declaration?
Difference between Class and Struct.
13 Answers Ericsson, Motorola, Wipro,
Is c compiled or interpreted?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.