Is c procedural or object oriented?
No Answer is Posted For this Question
Be the First to Post Answer
How many bytes is a struct in c?
Hai why 'c' is the middle language
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Explain c preprocessor?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
write a c program for greatest of three numbers without using if statment
Can we declare variables anywhere in c?
How do you determine a file’s attributes?
write a program that finds the factorial of a number using recursion?
Explain how are 16- and 32-bit numbers stored?
Write a pro-gramme to determine whether the number is even or odd?
c program to compute AREA under integral