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
difference between ordinary variable and pointer in C?
c program to subtract between two numbers without using '-' sign and subtract function.
String concatenation
what is a c-language.what is do.
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
What is I ++ in c programming?
What are the different types of pointers?
How can I find out how much free space is available on disk?
Differentiate between the = symbol and == symbol?
c language interview questions & answer
What are the different pointer models in c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }