Write the syntax and purpose of a switch statement in C.
No Answer is Posted For this Question
Be the First to Post Answer
Why we not create function inside function.
Explain what is the difference between a free-standing and a hosted environment?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
What is the role of && operator in a program code?
write a program of palindrome(madam=madam) using pointer?
what is software?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
i need all types of question paper releted to "c" and other language.
How do you view the path?
write a c program to convert fahrenheit to celsius?