How to define structures? ·
No Answer is Posted For this Question
Be the First to Post Answer
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
explain what is fifo?
How we can set and clear bit in a byte using macro function?
Why dont c comments nest?
What is Your Name :)
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
What are the basic data types associated with c?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
What is the function of multilevel pointer in c?
Write a program that accept anumber in words
#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(); }
Calculate 1*2*3*____*n using recursive function??