Why does this code crash?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


Tell me what is null pointer in c?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


Do you know pointer in c?

0 Answers  






How can I call fortran?

0 Answers  


Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me

7 Answers  


i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

2 Answers  


Here is a good puzzle: how do you write a program which produces its own source code as output?

0 Answers  


#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

6 Answers   ME,


What is difference between %d and %i in c?

0 Answers  


Is it possible to use curly brackets ({}) to enclose single line code in c program?

0 Answers  


Categories