Explain what does a function declared as pascal do differently?
No Answer is Posted For this Question
Be the First to Post Answer
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Find greatest number out of 10 number without using loop.
how to print a statement in c without use of console statement ,with the help of if statement it should print
ASCII stands for
Explain goto?
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are keywords in c with examples?
Write a simple code fragment that will check if a number is positive or negative.
Why clrscr is used in c?
Is it fine to write void main () or main () in c?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0