What is s in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain null pointer.
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
write a program to swap two variables a=5 , b= 10 without using third variable
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
what is diference between return 0 and return NULL??
What does 3 mean in texting?
Write a program in c to print * * * * * *******
write a program to print largest number of each row of a 2D array