What is a nested formula?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to reverse a given number in c language?
What is a loop?
What is pointer to pointer in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
what different between c and c++
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
what is the advantage of function pointer
16 Answers CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
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(); }
Should a function contain a return statement if it does not return a value?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);