Is main is user defined function?
No Answer is Posted For this Question
Be the First to Post Answer
What are type modifiers in c?
Who invented bcpl language?
Write code for atoi(x) where x is hexadecimal string.
What is wild pointer in c with example?
What is the advantage of a random access file?
What is an example of enumeration?
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
What is the relationship between pointers and data structure?
write a c program to store and print name,address,roll.no of a student using structures?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }