What is a ternary operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why c++ is called c++ and not c+?
What is c basic?
What is .obj file in c?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is the best way to comment out a section of code that contains comments?
Explain is it valid to address one element beyond the end of an array?
What happens if header file is included twice?
What is the difference between void main and main in c?
Can you think of a way when a program crashed before reaching main? If yes how?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What are header files why are they important?