Find the O/p of the following
1)
#include
int main()
{
char c='1';
int j=atoi(c);
}
Answers were Sorted based on User's Feedback
What are comments and how do you insert it in a C program?
How do you construct an increment statement or decrement statement in C?
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
Write a program in c to replace any vowel in a string with z?
What are qualifiers and modifiers c?
What does extern mean in a function declaration?
write a string copy function routine?
What does nil mean in c?
What is indirection in c?
to convert a string without using decrement operater and string functions
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Explain Function Pointer?