Who invented b language?
No Answer is Posted For this Question
Be the First to Post Answer
How can I list all of the predefined identifiers?
Q. where is the below variables stored ? - volatile, static, register
What is indirection?
Write a program to print "hello world" without using a semicolon?
What are external variables in c?
What are the disadvantages of external storage class?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
write a programe to find the factorial of given number using recursion
What is a null string in c?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
What is volatile c?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;