Why c is called procedure oriented language?
No Answer is Posted For this Question
Be the First to Post Answer
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Write a program to print “hello world” without using semicolon?
What is the translation phases used in c language?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Describe wild pointers in c?
What does return 1 means in c?
What is memmove?
What are the disadvantages of c language?
Explain a file operation in C with an example.
How can you be sure that a program follows the ANSI C standard?