What is meant by int main ()?
No Answer is Posted For this Question
Be the First to Post Answer
How do you print only part of a string?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
What is indirection? How many levels of pointers can you have?
What is memory leak in c?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
what is pointer ? what is the use of pointer?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What are compound statements?
I need a sort of an approximate strcmp routine?
what is the output of printf("%d",(scanf("%d",10));
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions