Why is extern used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is NULL pointer?
explain what are actual arguments?
What is use of #include in c?
What are the types of data structures in c?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
What is echo in c programming?
What is the size of enum in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
int *a[5] refers to
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Why main is not a keyword in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.