What is external variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between strcpy() and memcpy() function?
write a program in c to read array check element is present or not?
whitch value return void main?
What is the difference between arrays and pointers?
Why do we use main function?
array of pointer pointer to array pointer to pointer
What is the use of typedef in structure in c?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Combinations of fibanocci prime series
how many argument we can pas in in a function
how to find out the reverse number of a digit if it is input through the keyboard?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }