What is a stream?
No Answer is Posted For this Question
Be the First to Post Answer
Is main is user defined function?
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
What is C language ?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is s or c?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What are the storage classes in C?
How many types of operator or there in c?
What are the different types of data structures in c?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
write a program to display all prime numbers