Does free set pointer to null?
No Answer is Posted For this Question
Be the First to Post Answer
What is C language Terminator?
What is break in c?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
Explain the priority queues?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
why we shiuld use main keyword in C
When we use void main and int main?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What does the file stdio.h contain?
Difference between constant pointer and pointer to a constant.
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop