What is a stream in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is dynamic variable in c?
what are the difference between ANSI C and Let Us c and Turbo C
who is the founder of c
19 Answers College School Exams Tests, HP,
Program to find the absolute value of given integer using Conditional Operators
#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 are the different data types in c?
size maximum allocated by calloc()
How can I remove the trailing spaces from a string?
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Apart from dennis ritchie who the other person who contributed in design of c language.
In C language what is a 'dangling pointer'?