Explain how can I make sure that my program is the only one accessing a file?
No Answer is Posted For this Question
Be the First to Post Answer
How can I access an I o board directly?
How is a null pointer different from a dangling pointer?
Write a program for deleting duplicate elements in an array
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
Is calloc better than malloc?
what is printf
What is malloc calloc and realloc in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
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
How to compare array with pointer in c?