Table of Sudoku n*n
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
whitch value return void main?
1. Write a program to reverse every second word in a given sentence.
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
Example of friendly function in c++
What are the types of functions in c?
how to devloped c lenguege?