Is main is user defined function?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
what is const volatile?
Why is c so popular?
What does char * * argv mean in c?
What are the different types of linkage exist in c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is the role of && operator in a program code?
Why c language is called c?
how many key words availabel in c a) 28 b) 31 c) 32
How can I change their mode to binary?
Why is c known as a mother language?