simple program of graphics and their output display
No Answer is Posted For this Question
Be the First to Post Answer
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
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.
Is the following code legal? struct a { int x; struct a b; }
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
What is the right way to use errno?
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
What is chain pointer in c?
Write a program to print "hello world" without using a semicolon?
in linking some of os executables are linking name some of them
Can we initialize extern variable in c?
Explain what are its uses in c programming?