struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
9 16024what is the output of the following program and explain the
answer
#include
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
2390design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
2 6190i want to have a program to read a string and print the frequency of each character and it should work in turbo c
3 9255
Calculate 1*2*3*____*n using recursive function??
What is meant by int main ()?
Explain 'far' and 'near' pointers in c.
What is %d used for?
What is the right type to use for boolean values in c?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Is fortran still used today?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
string reverse using recursion
What is a structure in c language. how to initialise a structure in c?
What is the role of && operator in a program code?
can any one tel me wt is the question pattern for NIC exam
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }