What is the difference between fread buffer() and fwrite buffer()?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Can you please explain the difference between malloc() and calloc() function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
marge linklist
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
What is the difference between malloc() and calloc() function in c language?
Explain setjmp()?
Define macros.
what r the cpu registers r ther?
What is a program flowchart and explain how does it help in writing a program?
Why c is procedure oriented?