How. To pass the entrance test
What is c value paradox explain?
Write a program that can show the multiplication table.
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
What is the difference between char array and char pointer?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
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?
How the processor registers can be used in C ?
Hi, main() { } Is a user defined function or Built in Functionn
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain how can type-insensitive macros be created?
What is the memory allocated by the following definition ? int (*x)[10];
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1