Why #include is used in c language?
No Answer is Posted For this Question
Be the First to Post Answer
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
How do you generate random numbers in C?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is struct node in c?
How do we open a binary file in Read/Write mode in C?
What is the Purpose of 'extern' keyword in a function declaration?
swap 2 numbers without using third variable?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
write a program whose output will be- 1 12 123 1234
what is the role you expect in software industry?
What is the difference between array and pointer?