What is line in c preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
how to write a program which adds two numbers without using semicolon in c
How is null defined in c?
What is hungarian notation? Is it worthwhile?
State two uses of pointers in C?
what is void pointer?
What are the 5 organizational structures?
#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
Write a program for deleting duplicate elements in an array
What is the difference between near, far and huge pointers?
How would you sort a linked list?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
Can two or more operators such as and be combined in a single line of program code?