In a switch statement, what will happen if a break statement is omitted?
No Answer is Posted For this Question
Be the First to Post Answer
WAP to convert text into its ASCII Code and also write a function to decode the text given?
How can you increase the size of a statically allocated array?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
In c programming language, how many parameters can be passed to a function ?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
Write code for atoi(x) where x is hexadecimal string.
What is a loop?
Why do we use int main instead of void main in c?
What is the sizeof () a pointer?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
List some of the dynamic data structures in C?
int x=5; printf("%d%d%d",x,x<<2,x>>2);