What does main () mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
How do you define CONSTANT in C?
Does c have enums?
How old is c programming language?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is c mainly used for?
What is abstract data structure in c?
Can you define which header file to include at compile time?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Write a program to find whether the given number is prime or not?
write an interactive program to generate the divisors of a given integer.
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }