Can we change the value of static variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
how to connect oracle in C/C++.
What is getch () for?
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
char ch=10;printf("%d",ch);what is the output
What is typeof in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
suppose there are five integers write a program to find larger among them without using if- else
Why can't we initialise member variable of a strucutre
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
Explain the meaning of keyword 'extern' in a function declaration.
What is the difference between break and continue?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.