What are operators in c?
No Answer is Posted For this Question
Be the First to Post Answer
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
Explain goto?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
Explain the concept and use of type void.
Which programming language is best for getting job 2020?
What is the best way of making my program efficient?
Write a program to generate the Fibinocci Series
a C prog to swap 2 no.s without using variables just an array?
What is the method to save data in stack data structure type?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer