Is file a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
using for loop sum 2 number of any 4 digit number in c language
What is methods in c?
How can I ensure that integer arithmetic doesnt overflow?
Explain how can a program be made to print the name of a source file where an error occurs?
what is level of tree if leaf node is at level 4.please explain.
1 232 34543 4567654 can anyone tell me how to slove this c question
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
i have a written test in tomorrow
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
What do you mean by scope of a variable in c?