What is uint8 in c?
No Answer is Posted For this Question
Be the First to Post Answer
4. main() { int c=- -2; printf("c=%d",c); }
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
What is period operator in c?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is the translation phases used in c language?
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 Answers Accenture, Gridco, IBM, Kevin IT, TCS, Vimukti Technologies,
Differentiate between declaring a variable and defining a variable?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
explain what are actual arguments?
What is the use of typedef in c?