What are the two types of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between constant pointer and constant variable?
How to reverse a string using a recursive function, with swapping?
12345 1234 123 12 1
What does emoji p mean?
what is difference between ANSI structure and C99 Structure?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What is pointer to pointer in c language?
Explain what is the heap?
What is a lookup table in c?
How will you delete a node in DLL?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Explain pointer. What are function pointers in C?