regarding pointers concept
No Answer is Posted For this Question
Be the First to Post Answer
How to delete a node from linked list w/o using collectons?
What is a node in c?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
difference between memcpy and strcpy
What is the role of this pointer?
What happens if header file is included twice?
how do we remove the printed character in printf statement and write next it it
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
explain what is fifo?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0