Is c object oriented?
No Answer is Posted For this Question
Be the First to Post Answer
what are non standard function in c
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
How many types of functions are there in c?
Can we declare variables anywhere in c?
Which command is more efficient? *(ptr+1) or ptr[1]
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
In C language what is a 'dangling pointer'?
If you know then define #pragma?
How is null defined in c?
what are two kinds of java
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?