Can a program have two main functions?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a C program to determine the smallest among three nos using conditional operator?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
What is the explanation for cyclic nature of data types in c?
program to find the magic square
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
What should be keep precautions while using the recursion method?
What is the difference between array_name and &array_name?
What are pointers? What are stacks and queues?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
64/square(4)
Who developed c language?