What are the different types of C instructions?
No Answer is Posted For this Question
Be the First to Post Answer
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
Which one would you prefer - a macro or a function?
wite a programme in c to linear search a data using flag and without using flags?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is the purpose of void in c?
What are called c variables?
What is the usage of the pointer in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
write a program to generate address labels using structures?
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
What is c token?
What is c programing language?