Explain why C language is procedural?
No Answer is Posted For this Question
Be the First to Post Answer
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is a program flowchart and explain how does it help in writing a program?
How do I use strcmp?
What is null pointer constant?
How many levels of pointers have?
what is use of malloc and calloc?
Total of how many functions are available in c?
Write a function to find the area of a triangle whose length of three sides is given
Can a local variable be volatile in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
write a program to copy a string without using a string?
How can you call a function, given its name as a string?