Can we change the value of constant variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does stand for?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What is auto keyword in c?
count the numbers between 100 and 300, that star with 2 and ends with 2
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What is your stream meaning?
char ch="{'H','I',0};printf("%s",ch);what is output
how to swap 2 numbers within a single statement?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
write a progrmm in c language take user interface generate table using for loop?
code for quick sort?