What do the functions atoi(), itoa() and gcvt() do?
No Answer is Posted For this Question
Be the First to Post Answer
What is the scope of global variable in c?
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Explain what is the difference between #include and #include 'file' ?
how to find sum of digits in C?
write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
Explain what’s a signal? Explain what do I use signals for?
How many keywords (reserve words) are in c?
write a program for odd numbers?
why the execution starts from main function
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What are the uses of null pointers?