Read two numbers from keyboard and find maximum of them?
What library is sizeof in c?
void main() { int i=5; printf("%d",i+++++i); }
how does printf function work
difference between Low, Middle, High Level languages in c ?
Program to find the sum of digits of a given number until the sum becomes a single digit
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
which is faster execution: loops or recursion?
What is the use of a conditional inclusion statement in C?
explain what is fifo?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June