What is the difference between fread buffer() and fwrite buffer()?
No Answer is Posted For this Question
Be the First to Post Answer
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Is this program statement valid? INT = 10.50;
What does typedef struct mean?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
what is the benefit of c30
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What are loops c?
What do you mean by c what are the main characteristics of c language?
count the numbers between 100 and 300, that star with 2 and ends with 2
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
write a program to find lcm and hcf of two numbers??
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage