Convert the following expression to postfix and prefix
(A+B) * (D-C)
Answers were Sorted based on User's Feedback
Can we include one C program into another C program if yes how?
What is actual argument?
What is extern storage class in c?
Difference between linking and loading?
Process by which one bit pattern in to another by bit wise operation is?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What are the types of data structures in c?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
Differentiate between null and void pointers.
What is the difference between a function and a method in c?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
write a c program to check weather a particluar bit is set or not?