write c program without semicolon
Answer Posted / ramya
#include<stdio.h>
void main()
{
if(printf("sum=%d",(10+20))
{
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Describe the header file and its usage in c programming?
How important is structure in life?
Is exit(status) truly equivalent to returning the same status from main?
all c language question
Which header file is essential for using strcmp function?
What is the use of #include in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
Tell me is null always defined as 0(zero)?
What is bss in c?
What are categories used for in c?
int i=10; printf("%d %d %d", i, i=20, i);
Explain void pointer?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
The file stdio.h, what does it contain?