Why do we use int main instead of void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain pointer. What are function pointers in C?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
What is the purpose of #pragma directives in C?
What is a dynamic array in c?
What compilation do?
7 Answers Geometric Software, Infosys,
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
can we store values and addresses in the same array? explain
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }