how to compare two strings without using strcmp() function??
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
What is meant by int fun const(int a, int b) { .... ... }
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Can an array be an Ivalue?
What are types of preprocessor in c?
Differentiate between static and dynamic modeling.
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
how to find the sizof of any datatype using bit manipulations
What is variable declaration and definition in c?
what is the use of ~ in c lang?????
Tell us something about keyword 'auto'.