Why c is called object oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
how to create c progarm without void main()?
What are the 5 data types?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?
how to compare two strings without using strcmp() function??
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What are structures and unions? State differencves between them.
Write a program to find minimum between three no.s whithout using comparison operator.
what is data structure?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Explain why C language is procedural?