Famous puzzles which are generally asked by companies during
interviews ?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Why enum is used in c?
C program to find all possible outcomes of a dice?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is the difference between break and continue?
Tell me is null always defined as 0(zero)?
What is optimization in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
1 Answers 91mobiles, Amazon, App Guruz, College School Exams Tests, Folio3, Infosys, Omega, Planin, Riphah International University, Subex,
what is the function of void main()?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is local and global variable in c?