What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
1 4405what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
2 5623write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
TCS,
1 3971
What is use of null pointer in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What are the types of data types and explain?
Is exit(status) truly equivalent to returning the same status from main?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Is c is a low level language?
What does %d do in c?
What are the 3 types of structures?
Why #include is used in c language?
Explain the difference between ++u and u++?
What is unary operator?
Can you add pointers together? Why would you?
What is meant by recursion?
Write a program for finding factorial of a number.
Why main is not a keyword in c?