How many types of errors are there in c language? Explain
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf(5+"Vidyarthi Computers"); }
what is difference between #include<stdio.h> and #include"stdio.h"
Tell me the use of bit field in c language?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
write a program in c language for the multiplication of two matrices using pointers?
What is queue in c?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
When should volatile modifier be used?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
shorting algorithmS
How are variables declared in c?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?