whenever a question is posted in a particular category in
allinterview.com, Is there any facility to receive an
indication mail.
For eg: I need to receive an indication email, whenever a
question is posted under the category “C Langauage”.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
What is extern variable in c with example?
what is void pointer?
What is the purpose of 'register' keyword in c language?
What is meant by recursion?
YBJBU6
What is Heap?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are the 4 types of programming language?
How can you determine the maximum value that a numeric variable can hold?
how to find string length wihtout using c function?
What is the memory allocated by the following definition ? int (*x)[10];