What is the difference between char array and char pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is the memory allocated by the following definition ? int (*x)[10];
What are the features of c languages?
How to print "I Love My India" without using semi colon?
What is an auto variable in c?
sum of two integers values only other then integer it should print invalid input.
What are the key features in c programming language?
nic scientist exam
What is merge sort in c?
Why c is known as a mother language?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
#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); }