What are the types of bitwise operator?
No Answer is Posted For this Question
Be the First to Post Answer
what different between c and c++
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is maximum size of array in c?
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
Not all reserved words are written in lowercase. TRUE or FALSE?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Can we write a program without main() function?
Is fortran faster than c?
In header files whether functions are declared or defined?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?