What are variables and it what way is it different from constants?
No Answer is Posted For this Question
Be the First to Post Answer
#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 register variable in c language?
c program to subtract between two numbers without using '-' sign and subtract function.
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Explain the differences between public, protected, private and internal.
What is an auto keyword in c?
What does dm mean sexually?
What is the use of ?: Operator?
Why we use conio h in c?
What is the use of sizeof () in c?
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'