What is c definition?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how does flowchart help in writing a program?
can we write a program in c for printf and scanf without using header file stdio.h
What is an example of enumeration?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What is merge sort in c?
How can I access a memory located at certain address?
What is the meaning of int *x[]();?
What are the different types of storage classes in C?
Does sprintf put null character?
Explain what is operator promotion?
What is putchar() function?
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