Why we use void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
What is wrong with this statement? Myname = 'robin';
Write a program which calculate sum of several number and input it into an array. Then, the sum of all the number in the array is calculated.
difference between the array and linked list general difference related to memory
What is union in c?
What is the difference between printf and scanf )?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What is c language & why it is used?
Is fortran still used today?
#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 are integer variable, floating-point variable and character variable?