What is a sequential access file?
No Answer is Posted For this Question
Be the First to Post Answer
What is a null pointer in c?
what is the full form of c language
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What does %d do in c?
related to rdbms query .
convert 12345 to 54321 withoutusing strig
What is "Duff's Device"?
Expand the following LKB BKL FFG
how to find turn around time in operating system?
What is line in c preprocessor?
Explain high-order bytes.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }