What does return 1 means in c?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between Shallow copy and Deep copy?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is indirection? How many levels of pointers can you have?
What is anagram in c?
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
write a program to concatenation the string using switch case?
Explain the difference between malloc() and calloc() in c?
How can I remove the leading spaces from a string?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
How can I direct output to the printer?
Write a C program in Fibonacci series.
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }