What is c variable?
No Answer is Posted For this Question
Be the First to Post Answer
Q. where is the below variables stored ? - volatile, static, register
what is self refrential structure
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
Program to find the absolute value of given integer using Conditional Operators
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
In which layer of the network datastructure format change is done
what is the disadvantage of using macros?
void main() { int i=5; printf("%d",i+++++i); }
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Multiply an Integer Number by 2 Without Using Multiplication Operator