enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
ME,
4 16795void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
3 30845main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
ME,
3 15075#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
ME,
6 19489how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
RMSI,
19 23701
What are types of structure?
What are the 5 types of inheritance in c ++?
What are the preprocessor categories?
What is the difference between procedural and functional programming?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is register variable in c language?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is the difference between call by value and call by reference in c?
Can I initialize unions?
Differentiate between new and malloc(), delete and free() ?
What do the functions atoi(), itoa() and gcvt() do?
what is the structure pointer?
What is #line used for?
What is data structure in c language?
Why c is called free form language?