How can you tell whether a program was compiled using c versus c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is an operator?
#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 are qualifiers?
What are the 5 types of inheritance in c ++?
what does exit() do?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
prog for 1st five prime numbers in 2^x - 1
diff between exptected result and requirement?
What is advantage of pointer in c?
How do you initialize pointer variables?
What are the types of assignment statements?
Can a void pointer point to a function?