Why is main function so important?
No Answer is Posted For this Question
Be the First to Post Answer
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
print the palindrome numbers in between 0 to n
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Program to trim a given character from a string.
Is double link list a linear data structure? If Yes, Why?If No, Why?
how many key words availabel in c a) 28 b) 31 c) 32
What is meant by global static? why we have to use static variable instead of Global variable
Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me
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..
to convert a string without using decrement operater and string functions
Is c an object oriented programming language?
What do you mean by command line argument?