How can you read a directory in a C program?
pgm to find middle element of linklist(in efficent manner)
Explain what does it mean when a pointer is used in an if statement?
write a progam to display the factors of a given number and disply how many prime numbers are there?
what are the languages used in c#?
Should a function contain a return statement if it does not return a value?
Write a program to print the prime numbers from 1 to 100?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
How do I determine whether a character is numeric, alphabetic, and so on?
Did c have any year 2000 problems?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What are the different types of objects used in c?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }