Can a function argument have default value?
No Answer is Posted For this Question
Be the First to Post Answer
Which built-in library function can be used to match a patter from the string?
Tell me can the size of an array be declared at runtime?
Why shouldn’t I start variable names with underscores?
c program to subtract between two numbers without using '-' sign and subtract function.
How to print %d in output
How will you allocate memory to double a pointer?
#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(); }
Explain what is the purpose of "extern" keyword in a function declaration?
what is the stackpointer
WAP to find that given no is small or capital
What is include directive in c?
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.