What is assignment operator?
No Answer is Posted For this Question
Be the First to Post Answer
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What are the advantages and disadvantages of pointers?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Can a variable be both static and volatile in c?
Explain how do you use a pointer to a function?
How can we open a file in Binary mode and Text mode?what is the difference?
What are loops in c?
How can you tell whether a program was compiled using c versus c++?
why return type of main is not necessary in linux
What is the use of bitwise operator?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if