Answer Posted / kumar
c is a procedure oriented programming language.It is
developed by Dennis Ritchie in 1972. It is new innovation of
the computer programming language.
It is also the best standard computer programming language.
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is c programming structure?
Can you write the algorithm for Queue?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How will you declare an array of three function pointers where each function receives two ints and returns a float?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is extern keyword in c?
What is function prototype in c language?
What are dangling pointers? How are dangling pointers different from memory leaks?
Are pointers integer?
What do header files do?
Why do we need functions in c?
Explain what is the benefit of using enum to declare a constant?
What does sizeof return c?