What are conditional operators in C?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
in linking some of os executables are linking name some of them
What is meant by int fun const(int a, int b) { .... ... }
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is the correct code to have following output in c using nested for loop?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
how we do lcm of two no using c simple if while or for statement
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
What is an operator?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
where do we use volatile keyword?