void main(){
int a;
a=1;
while(a-->=1)
while(a-->=0);
printf("%d",a);
}
No Answer is Posted For this Question
Be the First to Post Answer
const char * char * const What is the differnce between the above tow?.
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
swap 2 numbers without using third variable?
Explain what is the benefit of using an enum rather than a #define constant?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
What is the difference between procedural and functional programming?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
How many data structures are there in c?
What does %p mean c?
How can I convert a number to a string?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }