can we declare a function in side the structure?
Answers were Sorted based on User's Feedback
explain what is a newline escape sequence?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
coding for Fibonacci.?
How is = symbol different from == symbol in c programming?
What is the use of extern in c?
Whats s or c mean?
What is the difference between text and binary i/o?
What is the purpose of the statement: strcat (S2, S1)?
HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
How many keywords (reserve words) are in c?
#define d 10+10 main() { printf("%d",d*d); }