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
What is register variable in c language?
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
What is static memory allocation? Explain
Explain the Difference between the New and Malloc keyword.
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
diff .between strcture and union
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is the process of writing the null pointer?
what is the function of pragma directive in c?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }