How the C program can be compiled?
Answers were Sorted based on User's Feedback
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
What is printf () in c?
Which is the best sort method for library management?
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 .
a simple c program using 'for' loop to display the output 5 4 3 2 1
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
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
What is variables in c?
What is #line?
What is the use of typedef in structure in c?