What does int main () mean?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Write a C program to perform some of the operation which can be performed using Single linked list
What is the modulus operator?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is call by value in c?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float