i=10,j=20
j=i,j?(i,j)?i:j:j
print i,j
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
How do I use void main?
What are header files? What are their uses?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
How can you call a function, given its name as a string?
How do you define structure?
Explain high-order and low-order bytes.
what is difference between ANSI structure and C99 Structure?
What is Bitwise Operator and how it works?
How can I direct output to the printer?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }