Explain setjmp()?
No Answer is Posted For this Question
Be the First to Post Answer
diff. between *p and **p
Should I learn data structures in c or python?
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
Why do we use stdio h and conio h?
Can we add pointers together?
void main() { int i=5; printf("%d",i+++++i); }
different between overloading and overriding
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }