What is dangling pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c still so popular?
What are formal parameters?
Explain modulus operator.
What is a segmentation fault?
suppose there are five integers write a program to find larger among them without using if- else
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
how to create c progarm without void main()?
How many levels of pointers have?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How can type-insensitive macros be created?
code for find determinent of amatrix
Can a function argument have default value?