What are type modifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
what is c++ programming?
using for loop sum 2 number of any 4 digit number in c language
What is volatile in c language?
What are the keywords in c?
How many types of errors are there in c language? Explain
C program to perform stack operation using singly linked list
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Write a program to know whether the input number is an armstrong number.
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?