What are the primitive data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers with using function?
What is structure in c definition?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What is the size of enum in c?
What is the Lvalue and Rvalue?
how to swap two integers 1 and 32767 without using third variable
diff. between *p and **p
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
Explain how do you convert strings to numbers in c?
Explain how many levels deep can include files be nested?
what is an inline fuction??
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)