Write a program that his output 1 12 123
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
What are pointers? Why are they used?
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
main() { printf(5+"Vidyarthi Computers"); }
Explain the difference between getch() and getche() in c?
What is ctrl c called?
Write a program that his output * *** *****
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
marge linklist
What is an operator?
What is the difference between ++a and a++?
What is the difference between the expression “++a” and “a++”?