What is boolean in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
How can you be sure that a program follows the ANSI C standard?
write a program to compare 2 numbers without using logical operators?
How do I round numbers?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
Tell us something about keyword 'auto'.
Why do we use stdio h and conio h?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Can we assign integer value to char in c?
What is getch?