Explain how do you list files in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that can show the multiplication table.
What is the explanation for prototype function in c?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
what is the use of keyword volatile??
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above