What are the 4 types of functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is %s and %d in c?
Why do we need arrays in c?
please give me some tips for the placement in the TCS.
List the variables are used for writing doubly linked list program.
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What does typedef struct mean?
Why structure is used in c?
How many keywords are there in c?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
What will be your course of action for a push operation?
Tell me about low level programming languages.
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed