What is the use of ?: Operator?
No Answer is Posted For this Question
Be the First to Post Answer
how to find the largest element of array without using relational operater?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
Can 'this' pointer by used in the constructor?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is bash c?
Difference between goto, long jmp() and setjmp()?
C language questions for civil engineering
Write a program to find minimum between three no.s whithout using comparison operator.
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers