Define and explain about ! Operator?
No Answer is Posted For this Question
Be the First to Post Answer
What are c preprocessors?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is the purpose of macro in C language?
What is the difference between procedural and declarative language?
Is the following code legal? struct a { int x; struct a b; }
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
what is a constant pointer in C
Is c functional or procedural?
What are the types of type specifiers?
What do header files do?
Explain the use of fflush() function?