the statement while(i) puts the entire logic in loop. this loop is called
a) indefinite loop
b) definite loop
c) loop syntax wrong
d) none of the above
What is a rvalue?
print the palindrome numbers in between 0 to n
Describe wild pointers in c?
Is it possible to pass an entire structure to functions?
wat s the meaning of (int *)p +4;
What are the different types of errors?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
Explain the term printf() and scanf() used in c language?
biggest of two no's with out using if condition statement
What does malloc () calloc () realloc () free () do?
Is Exception handling possible in c language?
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks