What is the collection of communication lines and routers called?
No Answer is Posted For this Question
Be the First to Post Answer
how to copy a string without using c function
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
Explain indirection?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
write a program to convert a expression in polish notation (postfix) to inline (normal)
What is uint8 in c?
implement general tree using link list
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
When we use void main and int main?
What are all different types of pointers in c?