What do mean by network ?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
What are the different types of endless loops?
What is the ANSI C Standard?
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
What is a constant?
What is array of structure in c programming?
What is the use of #include in c?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
Describe the modifier in c?
What is preprocessor with example?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }