Explain how do you determine a file’s attributes?
No Answer is Posted For this Question
Be the First to Post Answer
int *a[5] refers to
what is the difference between class and unio?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
What is the difference between getch() and getche()?
Why is C called a middle-level language?
What are dangling pointers?
What is the significance of c program algorithms?
How can I invoke another program or command and trap its output?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain how do you print only part of a string?
what is purpose of fflush(stdin) function
main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }