What are the types of operators in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the right type to use for boolean values in c?
What are comments and how do you insert it in a C program?
Difference Between embedded software and soft ware?
how to connect oracle in C/C++.
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the difference between typedef struct and struct?
Write the following function in C. 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.
given post order,in order construct the corresponding binary tree
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is a c token and types of c tokens?
#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(); }