Define and explain about ! Operator?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between malloc calloc and realloc in c?
How do you sort filenames in a directory?
WHAT IS HIGH LEVEL LANGUAGE?
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); }
SRUCTURE PROGRAMMING
How can a process change an environment variable in its caller?
When a c file is executed there are many files that are automatically opened what are they files?
What is the purpose of #pragma directives in C?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
how can make variable not in registers
What is the difference between the expression “++a” and “a++”?
How main function is called in c?