What type is sizeof?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
how can we Declare a variable in c without defining it.
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
what is the format specifier for printing a pointer value?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
User define function contain thier own address or not.
What are file streams?
What is the difference between char array and char pointer?
What is wrong with this statement? Myname = 'robin';
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
Describe the steps to insert data into a singly linked list.