What do you mean by Recursion Function?
No Answer is Posted For this Question
Be the First to Post Answer
In which category does main function belong??
program for swapping two strings by using pointers in c language
How Many Header Files in c?
What is the difference between null pointer and wild pointer?
How do you initialize pointer variables?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What is identifier in c?
Does c have enums?
Is it better to use a macro or a function?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
explain how do you use macro?
Differentiate between #include<...> and #include '...'