What is the use of printf() and scanf() functions?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between the local variable and global variable in c?
What is a structural principle?
Write a program to swap two numbers without using third variable in c?
Which is more efficient, a switch statement or an if else chain?
Explain what are preprocessor directives?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
While(1) { } when this loop get terminate is it a infinite loop?
write a c program to find the probability of random numbers between 1-1000
What is the size of empty structure in c?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
Explain the difference between #include "..." And #include <...> In c?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?