What are 3 types of structures?
No Answer is Posted For this Question
Be the First to Post Answer
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
How do I use void main?
What is console in c language?
What is #define size in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
Why shouldn’t I start variable names with underscores?
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
What is wrong in this statement?
Can we change the value of #define in c?
write a proram to reverse the string using switch case?