Explain how do you override a defined macro?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
name the language for writing c compiler?
Why is void main used?
C,c++, Java is all are structural oriented or procedure oriented language..?
Give the rules for variable declaration?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
List some basic data types in c?
program for swapping two strings by using pointers in c language
What is pointer in c?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
what is the difference between procedure oriented and object oriented progaming language