Explain indirection?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
Explain what is the benefit of using enum to declare a constant?
What will be the output of x++ + ++x?
how to count no of words,characters,lines in a paragraph.
what is the difference between unix os and linux os
What are the data types present in c?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
How do you convert strings to numbers in C?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Explain the difference between call by value and call by reference in c language?