Which node is more powerful and can handle local information processing or graphics processing?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
Explain high-order bytes.
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
1. Write a program to reverse every second word in a given sentence.
What is the difference between fork() and vfork()?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
What is the difference between printf and scanf in c?
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Do pointers store the address of value or the actual value of a variable?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
difference of two no's with out using - operator