What is header file definition?
No Answer is Posted For this Question
Be the First to Post Answer
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
write a program to swap two numbers without using temporary variable?
Explain the binary height balanced tree?
Is there a way to jump out of a function or functions?
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
What is the best organizational structure?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
What is an lvalue?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
Does * p ++ increment p or what it points to?
What is a void pointer in c?