How are variables declared in c?
Answer / Rimpy Yadav
In C, you declare a variable by specifying its data type (e.g., int, float, char) followed by the variable name (e.g., myVar). For example: `int myVar;`
| Is This Answer Correct ? | 0 Yes | 0 No |
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);}
What is echo in c programming?
explain how do you use macro?
What is c language used for?
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
What is volatile, register definition in C
What are data types in c language?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
Where in memory are my variables stored?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
What is local and global variable in c?
How can I find out the size of a file, prior to reading it in?