Why can't I perform arithmetic on a void* pointer?
No Answer is Posted For this Question
Be the First to Post Answer
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Why string is used in c?
What are the uses of null pointers?
What is #error and use of it?
What is stack in c?
write a program to find out number of on bits in a number?
how write a addtion of two single dimensional array using of pointer in c language?
how can write all 1to 100 prime numbers using for loop,if and break ?
what is the difference between global variable & static variable declared out side all the function in the file.
Write a program to find whether the given number is prime or not?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }