How can you avoid including a header more than once?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between functions getch() and getche()?
How can I remove the trailing spaces from a string?
what is the difference between exit() and _exit() functions?
What is wild pointer in c with example?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
how to print a statement in c without use of console statement ,with the help of if statement it should print
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What are the types of macro formats?
What is variables in c?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer