How the C program can be compiled?

Answers were Sorted based on User's Feedback



How the C program can be compiled?..

Answer / prajeesha.k

alt+f8

Is This Answer Correct ?    2 Yes 15 No

Post New Answer

More C Interview Questions

#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

0 Answers   Wilco,


main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }

10 Answers   TCS, Vector,


What is printf () in c?

0 Answers  


Which is the best sort method for library management?

1 Answers   Microsoft,


plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .

3 Answers  


a simple c program using 'for' loop to display the output 5 4 3 2 1

2 Answers   Google,


which operator having highest precedence? a.)+ b.)++ c.)= d.)%

4 Answers  


main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 Answers   CISOC, CitiGroup, College School Exams Tests,


Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  


What is variables in c?

0 Answers  


What is #line?

0 Answers  


What is the use of typedef in structure in c?

0 Answers  


Categories